{"info":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","description":"<html><head></head><body><h1 id=\"general\">General</h1>\n<p>Sympa Generic Integration API (from here on “API” in this document) is a set of standardised API endpoints for exposing data from Sympa to a third-party software provider. This document describes the technical functionality of the API as well as the standard API endpoints.</p>\n<h1 id=\"important-on-absences-and-holiday-api-urls\">Important on Absences and Holiday API URLs</h1>\n<p>In this documentation, the API URL for Absences is <code>https://api.sympahr.net/api/Absences</code>. It is important to note, that if the customer entity is multinational, the Absences API URLs will include a country suffix, such as AbsencesFI or AbsencesUK, and the absences for employees in each country will be fetched through different API endpoints. In single-country entities no suffixes are used.</p>\n<p>Similar logic applies to holidays (<code>.../api/Holidays</code> -&gt; <code>.../api/HolidaysFI</code> and <code>.../api/HolidaysSE</code>, etc).</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Requests to the API interfaces are authenticated using Basic Authentication (API key as the username, API secret as the password).</p>\n<p>Requests where the authentication fails will get an HTTP Unauthorized (401) response code. Since unauthenticated requests are not necessarily associated with any specific ApiKey or interface, these failed requests will not be visible in the API Activity Log.</p>\n<p>Contact <a href=\"https://mailto:partners@sympa.com\"><b>partners@sympa.com</b></a> to get assigned an API key and secret for testing purposes.</p>\n<h1 id=\"metadata\">Metadata</h1>\n<p>Interface metadata can be accessed by appending <code>/$metadata</code> to the api service root URL (<code>https://api.sympahr.net/api</code>). The metadata is returned as XML, and it lists the available interfaces and their field properties.</p>\n<h1 id=\"service-document\">Service Document</h1>\n<p>The service returns a service document from the root URL (<code>https://api.sympahr.net/api</code>). This document is returned as JSON, and it lists all the API interfaces available with the given authentication method.</p>\n<h1 id=\"querying-data\">Querying Data</h1>\n<p>The API implements parts of the Open Data Protocol, Version 4. The supported features are described below.</p>\n<p>Every query returns all matches, which may decrease the performance especially with large data sets. It is recommended to implement as many appropriate query parameters to your requests as necessary to avoid unnecessary polling of data.</p>\n<h2 id=\"get-query-standard-parameters\">GET Query Standard Parameters</h2>\n<p>The results from all data queries are returned in JavaScript Object Notation (JSON) format. Only a subset of OData query parameters, listed below, are supported:</p>\n<ul>\n<li><p><code>$top</code></p>\n</li>\n<li><p><code>$skip</code></p>\n</li>\n<li><p><code>$orderby</code></p>\n</li>\n<li><p><code>$filter</code></p>\n</li>\n<li><p><code>$count</code></p>\n</li>\n<li><p><code>$expand</code></p>\n</li>\n</ul>\n<h3 id=\"top\">Top</h3>\n<p>The query <code>$top=XX</code> will return the first XX matches to the query.</p>\n<p>Example:</p>\n<p><code>.../api/SYSTEMNAMEPerson/?$top=200</code></p>\n<h3 id=\"skip\">Skip</h3>\n<p>The query <code>$skip=XX</code> will leave out the first XX matches to the query.</p>\n<p>Example:</p>\n<p><code>.../api/SYSTEMNAMEPerson?$skip=10</code><br><code>.../api/SYSTEMNAMEPerson?$skip=10&amp;$top=10</code></p>\n<h3 id=\"orderby\">Orderby</h3>\n<p>The query <code>$orderby=alias, otheralias desc</code> will sort the result set, primarily by the alias “alias”, ascending, and secondarily by the alias “otheralias”, descending.</p>\n<p>Example:</p>\n<p><code>.../api/SYSTEMNAMEPerson?$orderby=Employee_number</code></p>\n<h3 id=\"filter\">Filter</h3>\n<p>The following subset of OData filters are supported by the API.</p>\n<ul>\n<li><p><code>and</code></p>\n</li>\n<li><p><code>or</code></p>\n</li>\n<li><p><code>not</code></p>\n</li>\n<li><p><code>eq</code> (equal)</p>\n</li>\n<li><p><code>gt</code> (greater than)</p>\n</li>\n<li><p><code>lt</code> (less than)</p>\n</li>\n<li><p><code>ge</code> (greater than or equal to)</p>\n</li>\n<li><p><code>le</code> (less than or equal to)</p>\n</li>\n<li><p><code>contains</code></p>\n</li>\n<li><p><code>startswith</code></p>\n</li>\n<li><p><code>endswith</code></p>\n</li>\n</ul>\n<p>Using any other OData filter operator (e.g., <code>in</code>, <code>has</code>) or query function (e.g., <code>now</code>, <code>tolower</code>, <code>indexof</code>) will return an HTTP status code 501 (Not Implemented).</p>\n<p>Available filters vary by field type as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Type</strong></th>\n<th><strong>Supported Filters</strong></th>\n<th><strong>Examples</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>All field types</strong></td>\n<td>All field types can be filtered by null or by text.</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>Number</strong></td>\n<td><code>eq</code>, <code>gt</code>, <code>lt</code>, <code>ge</code>, <code>le</code></td>\n<td><code>.../api/SYSTEMNAMEPerson?$filter=not (number eq null)</code>  <br>  <br><code>.../api/SYSTEMNAMEPerson?$filter=number ge 0</code>  <br>  <br><code>.../api/SYSTEMNAMEPerson?$filter=number ge 1.14d</code></td>\n</tr>\n<tr>\n<td><strong>Date</strong></td>\n<td><code>eq</code>, <code>gt</code>, <code>lt</code>, <code>ge</code>, <code>le</code></td>\n<td><code>.../api/SYSTEMNAMEPerson?$filter=not(Original_hire_date eq null)</code>  <br>  <br><code>.../api/SYSTEMNAMEPerson?$filter=Date_of_birth gt 1980-12-17</code>  <br>  <br><code>.../api/SYSTEMNAMEPerson?$filter=(Original_hire_date gt 2020-02-29) and (Original_hire_date lt 2020-03-02)</code></td>\n</tr>\n<tr>\n<td><strong>Timestamp</strong>  <br><em>\"created\" and \"modified\"</em></td>\n<td><code>eq</code>, <code>gt</code>, <code>lt</code>, <code>ge</code>, <code>le</code></td>\n<td><code>.../api/SYSTEMNAMEPerson?$filter=(modified gt 2015-12-31T23:59:59Z)</code>  <br>  <br>If you don't specify the time, the timestamp is interpreted as T00:00:00  <br>  <br>Note: if the <code>created</code> field is null in Sympa, the API displays a value \"0001-01-01T00:00:00\" but an empty <code>modified</code> field is shown as \"null\"</td>\n</tr>\n<tr>\n<td><strong>Unique</strong> <strong>identifier</strong>  <br><em>\"Employee_number\" and \"Candidate_ID_from_ATS\"</em></td>\n<td>By null or by text.</td>\n<td><code>.../api/SYSTEMNAMEPerson?$filter=Employee_number eq '123'</code>  <br>  <br>If the employee numbers have a letter prefix, such as EMP123, leave the letter(s) out of the filter. Using values that are not numbers (e.g. Employee_number eq 'EMP123') will give an error (\"message\": \"Error with SQM query:  <br>MissingFilterField\").</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"count\">Count</h3>\n<p>The query <code>$count=true</code> will add the total count of all matches, after filtering, but before skip and top, as a return value named “odata.count”.</p>\n<p>Example:</p>\n<p><code>.../api/SYSTEMNAMEPerson?$count=true</code></p>\n<p>The @odata.count value always contains all the results matched by the filter, i.e. top and skip do not affect the count. Query <code>.../api/SYSTEMNAMEPerson?$skip=2&amp;$top=1&amp;$count=true</code> count value is same as <code>.../api/SYSTEMNAMEPerson?$count=true</code>.</p>\n<h3 id=\"expand\">Expand</h3>\n<p><code>$expand</code> query parameter allows filtering Sympa table rows (objects) inside a Sympa table (array). This query parameter is only in use with API endpoints that include arrays.</p>\n<p>Example:</p>\n<p><code>.../api/SYSTEMNAMECompensation?$expand=Compensation($filter=Valid_from ge 2011-01-01)</code></p>\n<p>Note: the <code>$expand</code> parameter filters only within the array in question, meaning the result set contains all the employees it would contain without the filtering; only the array objects are filtered.</p>\n<p>You can combine <code>$expand</code> with other filters and attributes:</p>\n<p><code>.../api/SYSTEMNAMECompensation?$filter=Test_user eq false&amp;$expand=Compensation($filter=Approval eq 5)</code></p>\n<p>In this example the all test users are filtered out of the response and the Compensation array will only include objects that are approved.</p>\n<h3 id=\"approval-status-in-get-queries\">Approval Status in GET Queries</h3>\n<p>If the API endpoint includes data that is associated with approval workflows, the approval information is returned as an integer value in the JSON message:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Approval Status</strong></th>\n<th><strong>Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Undefined</td>\n<td>0</td>\n</tr>\n<tr>\n<td>Waiting for data to be saved</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Waiting for approval request to be sent</td>\n<td>2</td>\n</tr>\n<tr>\n<td>Waiting for approval</td>\n<td>3</td>\n</tr>\n<tr>\n<td>Declined</td>\n<td>4</td>\n</tr>\n<tr>\n<td>Approved</td>\n<td>5</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"get-query-sympa-specific-parameters\">GET Query Sympa-Specific Parameters</h2>\n<p>In addition to the standard parameters, there are the following non-standard, Sympa-specific, query parameters available:</p>\n<ul>\n<li><p>errordata</p>\n</li>\n<li><p>since</p>\n</li>\n<li><p>until</p>\n</li>\n<li><p>at</p>\n</li>\n</ul>\n<p>Do not use $ with the Sympa-specific query parameters, as they are customized parameters for Sympa and not ODATA standard.</p>\n<h3 id=\"errordata\">Errordata</h3>\n<p>The query <code>errordata=true</code> will add a summary of all errors encountered in the data while querying, as a return value named “odata.errors”.</p>\n<h3 id=\"since-until-at\">Since, Until, At</h3>\n<p>Parameters <code>since</code>, <code>until</code>, and <code>at</code> can be used in API endpoints that include Sympa tables (arrays) to only return time-related objects that overlap with the given time frame.</p>\n<p>These parameters are often used, for exampel, when wanting to fetch Employment, Compensation, or Absence data only for a given time period, instead of querying the entire history.</p>\n<p>Examples:</p>\n<p><code>.../api/SYSTEMNAMECompensation?at=2024-01-01</code></p>\n<p><code>.../api/SYSTEMNAMEAbsences?since=2011-12-29&amp;until=2012-02-21</code></p>\n<p><code>.../api/SYSTEMNAMEBenefits?since=2011-12-29</code></p>\n<p><code>.../api/SYSTEMNAMEEmployment?until=2022-02-21</code></p>\n<h2 id=\"notes\">Notes</h2>\n<p>OData queries (GET requests) to the interface are performed against Sympa’s pre-calculated Reporting database. There’s a small delay from creating or modifying data to it being persisted to the pre-calculated Reporting database. What this means is that there is a small delay from modifying data with a POST or PATCH request before it will be queryable with a GET request. Usually the delay is less than a minute, in exceptional cases it may take up to 30 minutes.</p>\n<p>The default throttling level is up to 100 requests in 1h time per interface. This limit of 100 requests is a shared limit across all request types, so no more than 100 requests per hour can be executed regardless of type (GET, POST, PATCH).</p>\n<p>Sympa holds the right to create new APIs as well as deprecate them, modify them and limit their access.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"General","slug":"general"},{"content":"Important on Absences and Holiday API URLs","slug":"important-on-absences-and-holiday-api-urls"},{"content":"Authentication","slug":"authentication"},{"content":"Metadata","slug":"metadata"},{"content":"Service Document","slug":"service-document"},{"content":"Querying Data","slug":"querying-data"}],"owner":"33639379","collectionId":"cb6be297-df44-41de-96c1-6991a5d1f978","publishedId":"2sA3kXG1vX","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-08-30T12:18:17.000Z"},"item":[{"name":"Person","id":"c4df2b98-3d24-4529-a7d0-780b33271a01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericPerson","description":"<p>Use this endpoint to fetch employees' basic information, such as their name and contact information.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericPerson"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"1c2c51e6-f5fe-468c-91d9-e34e692afae0","name":"Get all employees, no filtering","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericPerson"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 15:57:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericPerson\",\n    \"value\": [\n        {\n            \"Given_first_names\": \"Aaron Topi Reijo\",\n            \"Preferred_given_name\": \"Aaron\",\n            \"Surname\": \"Ruotsalainen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aaron.ruotsalainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1001\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35830\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"aaron.ruotsalainen@sympademo.com\",\n            \"Phone_number_private\": \"050 399 4191\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Leppävaarankatu 4 D 5\",\n            \"Postal_code\": \"02600\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"140274-273J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1974-02-14\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Agnes\",\n            \"Preferred_given_name\": \"Agnes\",\n            \"Surname\": \"Ask\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"agnes.ask@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 454\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46043\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"agnes.ask@sympademo.com\",\n            \"Phone_number_private\": \"701740612\",\n            \"CO_Address\": \"C/O Abrahamsson 22B\",\n            \"Street_address\": \"Nybodavägen 13\",\n            \"Postal_code\": \"114 39\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": null,\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": null,\n            \"Date_of_birth\": null,\n            \"Original_hire_date\": \"2020-12-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aimo Tapio\",\n            \"Preferred_given_name\": \"Aimo\",\n            \"Surname\": \"Laine\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aimo.laine@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1007\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35813\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35827\",\n            \"E-mail_address_private\": \"aimo.laine@sympademo.com\",\n            \"Phone_number_private\": \"046 574 2061\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kaitaantie 6 C 33\",\n            \"Postal_code\": \"02150\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010984-8810\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1984-09-01\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aino Tuulia\",\n            \"Preferred_given_name\": \"Aino\",\n            \"Surname\": \"Mäentaus\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aino.maentaus@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1915\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35854\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35834\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"040 118 9964\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pääskylänrinne 6 A 3\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"151298-932P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1998-12-15\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aki Juuso Eino\",\n            \"Preferred_given_name\": \"Aki\",\n            \"Surname\": \"Harmaajärvi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aki.harmaajarvi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1005\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35834\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35811\",\n            \"E-mail_address_private\": \"aki.harmaajarvi@sympademo.com\",\n            \"Phone_number_private\": \"050 057 5787\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kivistönmäentie 8 B 3\",\n            \"Postal_code\": \"01230\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"090571-006B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1971-05-09\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Akida\",\n            \"Preferred_given_name\": \"Akida\",\n            \"Surname\": \"Achebe\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"akida.achebe@sympademo.com\",\n            \"Phone_number_work\": \"+44 7982 053593\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44014\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"akida.achebe@sympademo.com\",\n            \"Phone_number_private\": \"+44 7757 195437\",\n            \"CO_Address\": null,\n            \"Street_address\": \"7 Park Street\",\n            \"Postal_code\": \"CR0 1YD\",\n            \"City\": \"Croydon\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"GA 56 68 83 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1998-10-30\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Akilina\",\n            \"Preferred_given_name\": \"Akilina\",\n            \"Surname\": \"Krupin\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"akilina.krupin@sympademo.com\",\n            \"Phone_number_work\": \"+44 7709 504190\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44128\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"akilina.krupin@sympademo.com\",\n            \"Phone_number_private\": \"+44 7872 045651\",\n            \"CO_Address\": null,\n            \"Street_address\": \"33 Tite Street\",\n            \"Postal_code\": \"SW3 4JP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TX 97 03 23\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1996-12-10\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Akseli Robert\",\n            \"Preferred_given_name\": \"Akseli\",\n            \"Surname\": \"Karppinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"akseli.karppinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1009\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35815\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"akseli.karppinen@sympademo.com\",\n            \"Phone_number_private\": \"046 387 9882\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Runeberginkatu 2 D 8\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"220388-4649\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-03-22\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Albert\",\n            \"Preferred_given_name\": \"Albert\",\n            \"Surname\": \"Nylund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"albert.nylund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 468\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46057\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"albert.nylund@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björkskogsvägen 3\",\n            \"Postal_code\": \"187 62\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"630206-2846\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-02-06\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Alexander Riley\",\n            \"Preferred_given_name\": \"Alexander\",\n            \"Surname\": \"Ellis\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"demoesign@outlook.com\",\n            \"Phone_number_work\": \"+44 7013 786836\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44150\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"alex.riley@sympademo.com\",\n            \"Phone_number_private\": \"+44 7955 592029\",\n            \"CO_Address\": null,\n            \"Street_address\": \"41 Dawton Lane\",\n            \"Postal_code\": \"SW2 1AN\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NX 98 03 49 P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1985-10-13\",\n            \"Original_hire_date\": \"2022-02-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Allsopp Cyril\",\n            \"Preferred_given_name\": \"Ry\",\n            \"Surname\": \"Allsopp\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ry.allsopp@sympademo.com\",\n            \"Phone_number_work\": \"+44 7816 646212\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44110\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"ry.allsopp@sympademo.com\",\n            \"Phone_number_private\": \"+44 7006 904851\",\n            \"CO_Address\": null,\n            \"Street_address\": \"13 Alderney Street\",\n            \"Postal_code\": \"SW1V 4HH\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZN 98 99 91 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1985-03-04\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Alma Isabelle\",\n            \"Preferred_given_name\": \"Alma\",\n            \"Surname\": \"Björklund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"alma.bjorklund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 943\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46063\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46037\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"0701749619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"210197-3920\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-01-21\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anabelle Suki\",\n            \"Preferred_given_name\": \"Anabelle\",\n            \"Surname\": \"Simon\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anabelle.simon@sympademo.com\",\n            \"Phone_number_work\": \"+44 7013 741942\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44120\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44142\",\n            \"E-mail_address_private\": \"anabelle.simon@sympademo.com\",\n            \"Phone_number_private\": \"+44 7983 465784\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Downing Place\",\n            \"Postal_code\": \"SE1 2AA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"HM 38 37 45\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1990-06-19\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anaya\",\n            \"Preferred_given_name\": \"Anaya\",\n            \"Surname\": \"Amin\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"Anaya.Amin@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 445\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46034\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"Anaya.Amin@sympademo.com\",\n            \"Phone_number_private\": \"701740611\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Skogsbrynet 22\",\n            \"Postal_code\": \"187 41\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"870509-3112\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1987-05-09\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anna Katariina Heta\",\n            \"Preferred_given_name\": \"Anna\",\n            \"Surname\": \"Aaltonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anna.aaltonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1044\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35845\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"anna.aaltonen@sympademo.com\",\n            \"Phone_number_private\": \"042 983 2878\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Purotie 8 C 14\",\n            \"Postal_code\": \"01370\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"100599-396T\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1999-05-10\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anne Embla\",\n            \"Preferred_given_name\": \"Anne\",\n            \"Surname\": \"Stenberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anne.stenberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 455\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46044\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"anne.stenberg@sympademo.com\",\n            \"Phone_number_private\": \"701740609\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Blomstervägen 3\",\n            \"Postal_code\": \"187 35\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"660427-3083\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-04-27\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Annette\",\n            \"Preferred_given_name\": \"Annette\",\n            \"Surname\": \"Winter\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"annette.winter@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 441\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46030\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"annette.winter@sympademo.com\",\n            \"Phone_number_private\": \"701740625\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björkskogsvägen 3\",\n            \"Postal_code\": \"187 62\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"960502-2392\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1996-05-02\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anu Camilla\",\n            \"Preferred_given_name\": \"Anu\",\n            \"Surname\": \"Tammik\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anu.tammik@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1037\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35839\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"anu.tammik@sympademo.com\",\n            \"Phone_number_private\": \"044 197 4056\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Karsikkokuja 5 E 41\",\n            \"Postal_code\": \"01640\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"080400A777E\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2000-04-08\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Arn\",\n            \"Preferred_given_name\": \"Arn\",\n            \"Surname\": \"Hogarth\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"arn.hogarth@sympademo.com\",\n            \"Phone_number_work\": \"+44 7809 636246\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44131\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"arn.hogarth@sympademo.com\",\n            \"Phone_number_private\": \"+44 7740 984612\",\n            \"CO_Address\": null,\n            \"Street_address\": \"11 Parkway\",\n            \"Postal_code\": \"NW1 7PG\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JK 52 84 51 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1971-10-14\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Arne Kjell\",\n            \"Preferred_given_name\": \"Arne\",\n            \"Surname\": \"Lundkvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"arne.lundkvist@demo.sympa.com\",\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46060\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"701740633\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Nydalsvägen 5\",\n            \"Postal_code\": \"195 33\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"891112-2384\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-11-12\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Augusta Anjanette\",\n            \"Preferred_given_name\": \"Augusta\",\n            \"Surname\": \"Woodham\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"augusta.woodham@sympademo.com\",\n            \"Phone_number_work\": \"+44 7871 152855\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44143\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44142\",\n            \"E-mail_address_private\": \"augusta.woodham@sympademo.com\",\n            \"Phone_number_private\": \"+44 7977 770208\",\n            \"CO_Address\": null,\n            \"Street_address\": \"7 Kensington Palace Gardens\",\n            \"Postal_code\": \"W8 4PP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"WH 45 43 83 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1978-12-02\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aukusti Toivo\",\n            \"Preferred_given_name\": \"Aukusti\",\n            \"Surname\": \"Seppä\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aukusti.seppa@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1010\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35816\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"aukusti.seppa@sympademo.com\",\n            \"Phone_number_private\": \"041 045 7040\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonlahdentie 10 A 3\",\n            \"Postal_code\": \"02320\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"220889-403L\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-08-22\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aulikki\",\n            \"Preferred_given_name\": \"Aulikki\",\n            \"Surname\": \"Koskinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aulikki.koskinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1032\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35809\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"aulikki.koskinen@sympademo.com\",\n            \"Phone_number_private\": \"046 020 2086\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hämeentie 21 A 13\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"090266-344J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-02-09\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aurora\",\n            \"Preferred_given_name\": \"Aurora\",\n            \"Surname\": \"Pajari\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aurora.pajari@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1033\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35835\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"aurora.pajari@sympademo.com\",\n            \"Phone_number_private\": \"046 824 2497\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Perkkaantie 9 C 29\",\n            \"Postal_code\": \"02650\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"190690-2457\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1990-06-19\",\n            \"Original_hire_date\": \"2024-04-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Austyn\",\n            \"Preferred_given_name\": \"Austyn\",\n            \"Surname\": \"Britton\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"austyn.britton@sympademo.com\",\n            \"Phone_number_work\": \"+44 7777 409515\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44101\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"austyn.britton@sympademo.com\",\n            \"Phone_number_private\": \"+44 7760 459765\",\n            \"CO_Address\": null,\n            \"Street_address\": \"29 Church Street\",\n            \"Postal_code\": \"TW18 4EP\",\n            \"City\": \"Staines\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LE 89 74 13 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1976-01-19\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ava\",\n            \"Preferred_given_name\": \"Ava\",\n            \"Surname\": \"Kaplan\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ava.kaplan@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 440\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46029\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"ava.kaplan@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"750325-9280\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1975-03-25\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Benjamin\",\n            \"Preferred_given_name\": \"Benjamin\",\n            \"Surname\": \"Abney\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"benjamin.abney@sympademo.com\",\n            \"Phone_number_work\": \"+44 7840 101509\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44025\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"benjamin.abney@sympademo.com\",\n            \"Phone_number_private\": \"+44 7769 410589\",\n            \"CO_Address\": null,\n            \"Street_address\": \"16 Church Lane\",\n            \"Postal_code\": \"NW9 8SS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NP 80 95 28 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1983-01-15\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Bridger\",\n            \"Preferred_given_name\": \"Bridger\",\n            \"Surname\": \"Bone\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"bridger.bone@sympademo.com\",\n            \"Phone_number_work\": \"+44 7026 051605\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44103\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"bridger.bone@sympademo.com\",\n            \"Phone_number_private\": \"+44 7852 833221\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Riverdale Gardens\",\n            \"Postal_code\": \"N5 2PN\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"WA 00 43 03 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1993-10-23\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Cedric\",\n            \"Preferred_given_name\": \"Cedric\",\n            \"Surname\": \"Chang\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"cedric.chang@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 484\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46023\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46025\",\n            \"E-mail_address_private\": \"cedric.chang@sympademo.com\",\n            \"Phone_number_private\": \"701740623\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Havsörnsvägen 16\",\n            \"Postal_code\": \"192 72\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"670718-2991\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1967-07-18\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Chandan\",\n            \"Preferred_given_name\": \"Chandan\",\n            \"Surname\": \"Chaudhri\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"chandan.chaudhri@sympademo.com\",\n            \"Phone_number_work\": \"+44 7984 137365\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44114\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44103\",\n            \"E-mail_address_private\": \"chandan.chaudhri@sympademo.com\",\n            \"Phone_number_private\": \"+44 7823 465445\",\n            \"CO_Address\": null,\n            \"Street_address\": \"50 Cambridge Road\",\n            \"Postal_code\": \"TW11 8DR\",\n            \"City\": \"Teddington\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"OM 23 45 23\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1965-04-23\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Chandrasekhar\",\n            \"Preferred_given_name\": \"Chandrasekhar\",\n            \"Surname\": \"Nagarkar\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"chandrasekhar.nagarkar@sympademo.com\",\n            \"Phone_number_work\": \"+44 7741 969846\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44117\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"chandrasekhar.nagarkar@sympademo.com\",\n            \"Phone_number_private\": \"+44 7037 319891\",\n            \"CO_Address\": null,\n            \"Street_address\": \"5 Chestnut Grove\",\n            \"Postal_code\": \"RM11 1HX\",\n            \"City\": \"Hornchurch\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZR 33 58 56 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-12-06\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Chloé\",\n            \"Preferred_given_name\": \"Chloé\",\n            \"Surname\": \"Southwark\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"chloe.southwark@sympademo.com\",\n            \"Phone_number_work\": \"+44 7956 290840\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44151\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44105\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"+44 7956 290840\",\n            \"CO_Address\": null,\n            \"Street_address\": \"25 Chatsworth Road\",\n            \"Postal_code\": \"NW2 4BS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LM 23 45 23\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1995-05-30\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Christel Terese\",\n            \"Preferred_given_name\": \"Christel\",\n            \"Surname\": \"Frisk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"christel.frisk@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 451\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46040\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"christel.frisk@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Östersjövägen 15\",\n            \"Postal_code\": \"192 71\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"730503-2380\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-05-03\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Christina Ulrica\",\n            \"Preferred_given_name\": \"Christina\",\n            \"Surname\": \"Haraldsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"christina.haraldsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 456\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46045\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"christina.haraldsson@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Almvägen 9\",\n            \"Postal_code\": \"194 42\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"841209-9296\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1984-12-09\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Conway\",\n            \"Preferred_given_name\": \"Conway\",\n            \"Surname\": \"Bancroft\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"conway.bancroft@sympademo.com\",\n            \"Phone_number_work\": \"+44 7826 817868\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44108\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"conway.bancroft@sympademo.com\",\n            \"Phone_number_private\": \"+44 7886 990526\",\n            \"CO_Address\": null,\n            \"Street_address\": \"6 Station Road\",\n            \"Postal_code\": \"KT15 2AF\",\n            \"City\": \"Addlestone\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"KT 69 17 97\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2000-03-02\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Coretta\",\n            \"Preferred_given_name\": \"Coretta\",\n            \"Surname\": \"Garrod\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"coretta.garrod@sympademo.com\",\n            \"Phone_number_work\": \"+44 7946 755832\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44123\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"coretta.garrod@sympademo.com\",\n            \"Phone_number_private\": \"+44 7751 167832\",\n            \"CO_Address\": null,\n            \"Street_address\": \"4 Privet Drive\",\n            \"Postal_code\": \"HA4 7DS\",\n            \"City\": \"Hillingdon\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"SK 03 58 78\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-01-08\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Cortney\",\n            \"Preferred_given_name\": \"Cortney\",\n            \"Surname\": \"Ewart\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"cortney.ewart@sympademo.com\",\n            \"Phone_number_work\": \"+44 7889 635103\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44107\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44004\",\n            \"E-mail_address_private\": \"cortney.ewart@sympademo.com\",\n            \"Phone_number_private\": \"+44 7030 412162\",\n            \"CO_Address\": null,\n            \"Street_address\": \"19 Brook Street\",\n            \"Postal_code\": \"KT13 8UW\",\n            \"City\": \"Weybridge\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"PE 76 71 56\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1977-01-31\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Daria\",\n            \"Preferred_given_name\": \"Daria\",\n            \"Surname\": \"Ślusarczyk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"daria.slusarczyk@sympademo.com\",\n            \"Phone_number_work\": \"+44 7989 173582\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44004\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"daria.slusarczyk@sympademo.com\",\n            \"Phone_number_private\": \"+44 7785 269180\",\n            \"CO_Address\": null,\n            \"Street_address\": \"9 Redbridge Lane\",\n            \"Postal_code\": \"IG4 5EL\",\n            \"City\": \"Ilford\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JY 56 65 62 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1964-11-24\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Dash\",\n            \"Preferred_given_name\": \"Dash\",\n            \"Surname\": \"Walker\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"dash.walker@sympademo.com\",\n            \"Phone_number_work\": \"+44 7837 651139\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44133\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"dash.walker@sympademo.com\",\n            \"Phone_number_private\": \"+44 7756 377637\",\n            \"CO_Address\": null,\n            \"Street_address\": \"42 Baker Street\",\n            \"Postal_code\": \"NW1 6XE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LY 84 55 43\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1993-03-12\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Dennis\",\n            \"Preferred_given_name\": \"Dennis\",\n            \"Surname\": \"Eriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"dennis.eriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 73 4545999\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46064\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"dennis.eriksson@sympademo.com\",\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Grönsaksvägen 22a\",\n            \"Postal_code\": \"11111\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"891022-0000\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-10-22\",\n            \"Original_hire_date\": \"2022-08-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Eelis Eetu Väinö\",\n            \"Preferred_given_name\": \"Eelis\",\n            \"Surname\": \"Mustonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"eelis.mustonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1004\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35833\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35828\",\n            \"E-mail_address_private\": \"eelis.mustonen@sympademo.com\",\n            \"Phone_number_private\": \"041 370 0861\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Perkkaantie 9 C 29\",\n            \"Postal_code\": \"02650\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"051000A640X\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2000-10-05\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elena\",\n            \"Preferred_given_name\": \"Elena\",\n            \"Surname\": \"Zervas\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 453\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46042\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lärkvägen 17\",\n            \"Postal_code\": \"192 56\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971103-2392\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-11-03\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elina Sofia\",\n            \"Preferred_given_name\": \"Elina\",\n            \"Surname\": \"Nieminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elina.nieminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1050\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35851\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"040 521 8746\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Mannerheimintie 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"120585-123A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1985-05-12\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elis Cai\",\n            \"Preferred_given_name\": \"Elis\",\n            \"Surname\": \"Nylund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elis.nylund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 485\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46024\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"elis.nylund@sympademo.com\",\n            \"Phone_number_private\": \"701740635\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Adaptivevägen 4\",\n            \"Postal_code\": \"439 42\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"020718-2387\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2002-07-18\",\n            \"Original_hire_date\": \"2022-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elvira\",\n            \"Preferred_given_name\": \"Elvira\",\n            \"Surname\": \"Pilkvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elvira.pilkvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 448\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46037\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46016\",\n            \"E-mail_address_private\": \"elvira.pilkvist@sympademo.com\",\n            \"Phone_number_private\": \"701740633\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tuvängsvägen 19\",\n            \"Postal_code\": \"187 36\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"790808-9274\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1979-08-08\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Emilia Aino\",\n            \"Preferred_given_name\": \"Emilia\",\n            \"Surname\": \"Leskelä\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"emilia.leskelä@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1052\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35853\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35831\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"050 689 3254\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rautatienkatu 21\",\n            \"Postal_code\": \"33100\",\n            \"City\": \"Tampere\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"060781-456C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1981-07-06\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Emina\",\n            \"Preferred_given_name\": \"Emina\",\n            \"Surname\": \"Can\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"Emina.can@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 443\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46032\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46018\",\n            \"E-mail_address_private\": \"Emina.can@sympademo.com\",\n            \"Phone_number_private\": \"701740619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallstigen 13\",\n            \"Postal_code\": \"194 33\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"911227-2391\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-12-27\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fatima\",\n            \"Preferred_given_name\": \"Fatima\",\n            \"Surname\": \"Patel\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fatima.patel@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 447\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46036\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46018\",\n            \"E-mail_address_private\": \"fatima.patel@sympademo.com\",\n            \"Phone_number_private\": \"701740624\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hammarbyvägen 7\",\n            \"Postal_code\": \"118 60\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"700123-9297\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1970-01-23\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fred Andreas\",\n            \"Preferred_given_name\": \"Fred\",\n            \"Surname\": \"Holgersson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fred.holgersson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 480\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46019\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"fred.holgersson@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lugna Gatan 11\",\n            \"Postal_code\": \"111 49\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"750325-9280\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1975-03-25\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fredrik\",\n            \"Preferred_given_name\": \"Fredrik\",\n            \"Surname\": \"Lagerström\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fredrik.lagerstrom@demo.sympa.com\",\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46061\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Sjöstigen 3\",\n            \"Postal_code\": \"296 34\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971213-2401\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1997-12-13\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Geraldine Sharyl\",\n            \"Preferred_given_name\": \"Geraldine\",\n            \"Surname\": \"Woods\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"geraldine.woods@sympademo.com\",\n            \"Phone_number_work\": \"+44 7854 325404\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44142\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"geraldine.woods@sympademo.com\",\n            \"Phone_number_private\": \"+44 7831 380671\",\n            \"CO_Address\": null,\n            \"Street_address\": \"22 Leicester Square\",\n            \"Postal_code\": \"WC2H 7LE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"AE 67 97 84 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1989-12-04\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hallam Timothy\",\n            \"Preferred_given_name\": \"Hallam\",\n            \"Surname\": \"Kowalczyk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hallam.kowalczyk@sympademo.com\",\n            \"Phone_number_work\": \"+44 7018 243380\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44112\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44102\",\n            \"E-mail_address_private\": \"hallam.kowalczyk@sympademo.com\",\n            \"Phone_number_private\": \"+44 7825 841119\",\n            \"CO_Address\": null,\n            \"Street_address\": \"18 Larkfield Road\",\n            \"Postal_code\": \"NW3 2BJ\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"EE 18 03 55 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1981-06-02\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hannah\",\n            \"Preferred_given_name\": \"Hannah\",\n            \"Surname\": \"Benton-Knowles\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44152\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"hannah.benton-knowles@sympademo.com\",\n            \"Phone_number_private\": \"+44 7954 520449\",\n            \"CO_Address\": null,\n            \"Street_address\": \"41 Stiller Avenue\",\n            \"Postal_code\": \"EC1A 8RB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": null,\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": null,\n            \"Date_of_birth\": null,\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hannele Livia\",\n            \"Preferred_given_name\": \"Hannele\",\n            \"Surname\": \"Laitinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hannele.laitinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1027\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35826\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35810\",\n            \"E-mail_address_private\": \"hannele.laitinen@sympademo.com\",\n            \"Phone_number_private\": \"041 277 7375\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Bulevardi 6 A 11\",\n            \"Postal_code\": \"00120\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"071171-747T\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-11-07\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Helvi Erika\",\n            \"Preferred_given_name\": \"Helvi\",\n            \"Surname\": \"Aalto\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"helvi.aalto@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1029\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35827\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"helvi.aalto@sympademo.com\",\n            \"Phone_number_private\": \"041 367 7232\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Olarinluoma 6 E 35\",\n            \"Postal_code\": \"02200\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"261003A2998\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2003-10-26\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hilla Aina Matleena\",\n            \"Preferred_given_name\": \"Hilla\",\n            \"Surname\": \"Lahti\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hilla.lahti@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1045\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35846\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"hilla.lahti@sympademo.com\",\n            \"Phone_number_private\": \"044 066 6266\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tehtaankatu 12 A 22\",\n            \"Postal_code\": \"00140\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"280685-032V\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1985-06-28\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hira\",\n            \"Preferred_given_name\": \"Hira\",\n            \"Surname\": \"Vemulakonda\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hira.vemulakonda@sympademo.com\",\n            \"Phone_number_work\": \"+44 7986 283205\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44130\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"hira.vemulakonda@sympademo.com\",\n            \"Phone_number_private\": \"+44 7079 648243\",\n            \"CO_Address\": null,\n            \"Street_address\": \"14 Highfield Road\",\n            \"Postal_code\": \"NW11 9ET\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"XN 04 80 65\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1979-03-21\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Iiris\",\n            \"Preferred_given_name\": \"Iiris\",\n            \"Surname\": \"Nurmi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"iiris.nurmi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1046\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35847\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"iiris.nurmi@sympademo.com\",\n            \"Phone_number_private\": \"046 346 8831\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonkartanonkuja 4 A\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"200469-678T\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1969-04-20\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Iivo Herman Vilhelm\",\n            \"Preferred_given_name\": \"Iivo\",\n            \"Surname\": \"Saarinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"iivo.saarinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1017\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35821\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"iivo.saarinen@sympademo.com\",\n            \"Phone_number_private\": \"042 657 0362\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tehtaankatu 12 A 22\",\n            \"Postal_code\": \"00140\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050366-5724\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1966-03-05\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ingemar Hemming\",\n            \"Preferred_given_name\": \"Ingemar\",\n            \"Surname\": \"Lindholm\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ingemar.lindholm@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 475\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46014\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"ingemar.lindholm@sympademo.com\",\n            \"Phone_number_private\": \"701740624\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Sjöfågelvägen 8\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"940114-2386\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1994-01-14\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Inkeri Esteri\",\n            \"Preferred_given_name\": \"Inkeri\",\n            \"Surname\": \"Järvinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"inkeri.jarvinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1038\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35810\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"inkeri.jarvinen@sympademo.com\",\n            \"Phone_number_private\": \"050 085 8343\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Käpyläntie 5 A 9\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"140795-355M\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1995-07-14\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Isac\",\n            \"Preferred_given_name\": \"Isac\",\n            \"Surname\": \"Eriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"isac.eriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 464\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46053\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46025\",\n            \"E-mail_address_private\": \"isac.eriksson@sympademo.com\",\n            \"Phone_number_private\": \"701740626\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Ormängsvägen 8\",\n            \"Postal_code\": \"192 61\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"750404-9292\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1975-04-04\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ivan Elov\",\n            \"Preferred_given_name\": \"Ivan\",\n            \"Surname\": \"Ek\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ivan.ek@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 482\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46021\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"ivan.ek@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kastanjevägen 7\",\n            \"Postal_code\": \"183 66\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881116-2398\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-11-16\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jaakkima\",\n            \"Preferred_given_name\": \"Jaakkima\",\n            \"Surname\": \"Ruotsalainen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jaakkima.ruotsalainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1012\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35817\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"jaakkima.ruotsalainen@sympademo.com\",\n            \"Phone_number_private\": \"044 066 6754\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pakkalankuja 2 B 44\",\n            \"Postal_code\": \"01520\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050367-079F\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1967-03-05\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jaana Birgitta Kaarina\",\n            \"Preferred_given_name\": \"Jaana\",\n            \"Surname\": \"Harmaajärvi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jaana.harmaajarvi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1021\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35801\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": \"jaana.harmaajarvi@sympademo.com\",\n            \"Phone_number_private\": \"044 785 1760\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Latokartanontie 1 C 3\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010586-336P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1986-05-01\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jafari\",\n            \"Preferred_given_name\": \"Jafari\",\n            \"Surname\": \"Falana\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jafari.falana@sympademo.com\",\n            \"Phone_number_work\": \"+44 7823 590590\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44136\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"jafari.falana@sympademo.com\",\n            \"Phone_number_private\": \"+44 7019 668380\",\n            \"CO_Address\": null,\n            \"Street_address\": \"7 Portobello Road\",\n            \"Postal_code\": \"W11 3DA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LP 73 15 59 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1973-08-01\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jami\",\n            \"Preferred_given_name\": \"Jami\",\n            \"Surname\": \"Martikainen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jami.martikainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1014\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35818\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35831\",\n            \"E-mail_address_private\": \"jami.martikainen@sympademo.com\",\n            \"Phone_number_private\": \"050 640 5079\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Mechelininkatu 1 A 7\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"280504A7477\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2004-05-28\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Janika\",\n            \"Preferred_given_name\": \"Janika\",\n            \"Surname\": \"Virtanen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"janika.virtanen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1031\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35808\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"janika.virtanen@sympademo.com\",\n            \"Phone_number_private\": \"040 211 3841\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rekolanmäki 4 F 42\",\n            \"Postal_code\": \"01750\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"270363-349B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1963-03-27\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jayesh\",\n            \"Preferred_given_name\": \"Jayesh\",\n            \"Surname\": \"Narang\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jayesh.narang@sympademo.com\",\n            \"Phone_number_work\": \"+44 7820 736854\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44115\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"jayesh.narang@sympademo.com\",\n            \"Phone_number_private\": \"+44 7920 606893\",\n            \"CO_Address\": null,\n            \"Street_address\": \"9 Mount Pleasant Road\",\n            \"Postal_code\": \"N17 6TH\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"AG 53 03 41 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1964-04-25\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jerred\",\n            \"Preferred_given_name\": \"Jerred\",\n            \"Surname\": \"Braddock\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jerred.braddock@sympademo.com\",\n            \"Phone_number_work\": \"+44 7956 200840\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44106\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44004\",\n            \"E-mail_address_private\": \"jerred.braddock@sympademo.com\",\n            \"Phone_number_private\": \"+44 7737 556787\",\n            \"CO_Address\": null,\n            \"Street_address\": \"22 Regent Street\",\n            \"Postal_code\": \"W1B 5BT\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LW 15 68 62\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1973-09-04\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Joakim Jesse Tapani\",\n            \"Preferred_given_name\": \"Joakim\",\n            \"Surname\": \"Salonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"joakim.salonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1003\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35832\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"joakim.salonen@sympademo.com\",\n            \"Phone_number_private\": \"046 138 6197\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hämeentie 21 A 13\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"180664-277W\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1964-06-18\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Johannes\",\n            \"Preferred_given_name\": \"Johannes\",\n            \"Surname\": \"Engman\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"johannes.engman@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 467\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46056\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"johannes.engman@sympademo.com\",\n            \"Phone_number_private\": \"701740607\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"960424-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1996-04-24\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Julia\",\n            \"Preferred_given_name\": \"Julia\",\n            \"Surname\": \"Hjort\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"julia.hjort@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 446\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46035\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"julia.hjort@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kvarnvägen 8\",\n            \"Postal_code\": \"192 42\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"640415-3832\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1964-04-15\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jüri Aulis\",\n            \"Preferred_given_name\": \"Jüri\",\n            \"Surname\": \"Avdeyev\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"juri.avdeyev@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1020\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35824\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"juri.avdeyev@sympademo.com\",\n            \"Phone_number_private\": \"041 417 7464\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Aleksanterinkatu 9 B 4\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050382-209J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1982-03-05\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Karim\",\n            \"Preferred_given_name\": \"Karim\",\n            \"Surname\": \"Martinez\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"karim.martinez@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 476\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46015\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"karim.martinez@sympademo.com\",\n            \"Phone_number_private\": \"701740607\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Solskensgränd 3\",\n            \"Postal_code\": \"173 47\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"850113-9995\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1985-01-13\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Katharina Elsy\",\n            \"Preferred_given_name\": \"Katharina\",\n            \"Surname\": \"Lindqvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"katharina.lindqvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 458\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46047\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"katharina.lindqvist@sympademo.com\",\n            \"Phone_number_private\": \"701740627\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Dalgångsvägen 5\",\n            \"Postal_code\": \"192 69\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"040805-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2004-08-05\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Katheryn Bessie\",\n            \"Preferred_given_name\": \"Katheryn\",\n            \"Surname\": \"Adkins\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"katheryn.adkins@sympademo.com\",\n            \"Phone_number_work\": \"+44 7070 793695\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44121\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44014\",\n            \"E-mail_address_private\": \"katheryn.adkins@sympademo.com\",\n            \"Phone_number_private\": \"+44 7851 722667\",\n            \"CO_Address\": null,\n            \"Street_address\": \"17 Albert Embankment\",\n            \"Postal_code\": \"SE1 7SP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"PH 32 73 95\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1994-02-09\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Katja\",\n            \"Preferred_given_name\": \"Katja\",\n            \"Surname\": \"Rask\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"katja.rask@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 442\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46031\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"katja.rask@sympademo.com\",\n            \"Phone_number_private\": \"701740617\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rosenstigen 17\",\n            \"Postal_code\": \"192 45\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"710925-9288\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-09-25\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Khary\",\n            \"Preferred_given_name\": \"Khary\",\n            \"Surname\": \"Okoye\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"khary.okoye@sympademo.com\",\n            \"Phone_number_work\": \"+44 7087 404460\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44138\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"khary.okoye@sympademo.com\",\n            \"Phone_number_private\": \"+44 7968 362836\",\n            \"CO_Address\": null,\n            \"Street_address\": \"1 Abbey Gardens\",\n            \"Postal_code\": \"W8 4QR\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"BB 22 22 23 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1973-11-15\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kim\",\n            \"Preferred_given_name\": \"Kim\",\n            \"Surname\": \"Kairos\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kim.kairos@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 474\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46013\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"kim.kairos@sympademo.com\",\n            \"Phone_number_private\": \"701740620\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björnvägen 21\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"630120-2633\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-01-20\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kirsi Ursula\",\n            \"Preferred_given_name\": \"Kirsi\",\n            \"Surname\": \"Heikkinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kirsi.heikkinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1026\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35806\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"kirsi.heikkinen@sympademo.com\",\n            \"Phone_number_private\": \"044 875 3682\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Fabianinkatu 27 B 18\",\n            \"Postal_code\": \"00130\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"051069-102C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1969-10-05\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kobe\",\n            \"Preferred_given_name\": \"Kobe\",\n            \"Surname\": \"Iwu\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kobe.iwu@sympademo.com\",\n            \"Phone_number_work\": \"+44 7758 878004\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44139\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"kobe.iwu@sympademo.com\",\n            \"Phone_number_private\": \"+44 7710 612859\",\n            \"CO_Address\": null,\n            \"Street_address\": \"5 Baker's Row\",\n            \"Postal_code\": \"EC1R 3DB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LE 60 83 52 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1966-10-07\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kristian\",\n            \"Preferred_given_name\": \"Kristian\",\n            \"Surname\": \"Heikkinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kristian.heikkinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1013\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35825\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35810\",\n            \"E-mail_address_private\": \"kristian.heikkinen@sympademo.com\",\n            \"Phone_number_private\": \"046 283 8831\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Asentajankatu 1 C 78\",\n            \"Postal_code\": \"01510\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"291191-854L\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-11-29\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kristian Göran\",\n            \"Preferred_given_name\": \"Kristian\",\n            \"Surname\": \"Byqvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kristian.byqvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 481\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46020\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"kristian.byqvist@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kastanjevägen 7\",\n            \"Postal_code\": \"183 66\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"911128-2399\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-11-28\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kusti Henrikki\",\n            \"Preferred_given_name\": \"Kusti\",\n            \"Surname\": \"Hämäläinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kusti.hamalainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1008\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35814\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"kusti.hamalainen@sympademo.com\",\n            \"Phone_number_private\": \"042 846 5626\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Karsikkokuja 5 E 41\",\n            \"Postal_code\": \"01640\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"031167-7454\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1967-11-03\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lamar\",\n            \"Preferred_given_name\": \"Lamar\",\n            \"Surname\": \"Blue\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lamar.blue@sympademo.com\",\n            \"Phone_number_work\": \"+44 7765 254379\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44102\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"lamar.blue@sympademo.com\",\n            \"Phone_number_private\": \"+44 7855 151318\",\n            \"CO_Address\": null,\n            \"Street_address\": \"17 Cromwell Road\",\n            \"Postal_code\": \"SW7 2EN\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NP 53 77 33 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1996-02-27\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Leanora Sutton\",\n            \"Preferred_given_name\": \"Leanora\",\n            \"Surname\": \"Clemens\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"leanora.clemens@sympademo.com\",\n            \"Phone_number_work\": \"+44 7730 507386\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44119\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44142\",\n            \"E-mail_address_private\": \"leanora.clemens@sympademo.com\",\n            \"Phone_number_private\": \"+44 7833 273826\",\n            \"CO_Address\": null,\n            \"Street_address\": \"4 Baker's Row\",\n            \"Postal_code\": \"EC1R 3DB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LC 15 15 25 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-01-20\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lena Ursula\",\n            \"Preferred_given_name\": \"Lena\",\n            \"Surname\": \"Björklund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lena.bjorklund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 452\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46041\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"lena.bjorklund@sympademo.com\",\n            \"Phone_number_private\": \"701740619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Ekdungevägen 8\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"921224-2391\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1992-12-24\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Liis\",\n            \"Preferred_given_name\": \"Liis\",\n            \"Surname\": \"Kivirand\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"liis.kivirand@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1035\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35837\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"liis.kivirand@sympademo.com\",\n            \"Phone_number_private\": \"041 455 1952\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kalliolinnantie 2 A 6\",\n            \"Postal_code\": \"00570\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"261195-135H\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1995-11-26\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lilia\",\n            \"Preferred_given_name\": \"Lilia\",\n            \"Surname\": \"Novikov\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lilia.novikov@sympademo.com\",\n            \"Phone_number_work\": \"+44 7900 077585\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44129\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"lilia.novikov@sympademo.com\",\n            \"Phone_number_private\": \"+44 7761 289507\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Puddle Lane\",\n            \"Postal_code\": \"SW17 0EY\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"XK 79 71 24 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1996-03-25\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lilibet\",\n            \"Preferred_given_name\": \"Lilibet\",\n            \"Surname\": \"Small\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lilibet.small@sympademo.com\",\n            \"Phone_number_work\": \"+44 7013 796836\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44001\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"lilibet.small@sympademo.com\",\n            \"Phone_number_private\": \"+44 7882 113844\",\n            \"CO_Address\": null,\n            \"Street_address\": \"23 High Street\",\n            \"Postal_code\": \"E1 7PS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZE 68 44 97 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2000-08-22\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lukas Fritiof\",\n            \"Preferred_given_name\": \"Lukas\",\n            \"Surname\": \"Eld\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lukas.eld@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 461\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46050\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"lukas.eld@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Östermalmsgatan 1\",\n            \"Postal_code\": \"114 42\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"891010-2386\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-10-10\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Luukas Henri\",\n            \"Preferred_given_name\": \"Luukas\",\n            \"Surname\": \"Ruoho\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"luukas.ruoho@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1006\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35812\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35827\",\n            \"E-mail_address_private\": \"luukas.ruoho@sympademo.com\",\n            \"Phone_number_private\": \"050 293 2360\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kalliolinnantie 2 A 6\",\n            \"Postal_code\": \"00570\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"040678-7347\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1978-06-04\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lyyti Pilvi\",\n            \"Preferred_given_name\": \"Lyyti\",\n            \"Surname\": \"Rautio\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lyyti.rautio@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1028\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35811\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35810\",\n            \"E-mail_address_private\": \"lyyti.rautio@sympademo.com\",\n            \"Phone_number_private\": \"050 270 0246\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonlahti 2 C 31\",\n            \"Postal_code\": \"02320\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"250991-791C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-09-25\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manny Kip\",\n            \"Preferred_given_name\": \"Manny\",\n            \"Surname\": \"Elder\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"manny.elder@sympademo.com\",\n            \"Phone_number_work\": \"+44 7941 684784\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44113\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"manny.elder@sympademo.com\",\n            \"Phone_number_private\": \"+44 7045 504603\",\n            \"CO_Address\": null,\n            \"Street_address\": \"28 The Chase\",\n            \"Postal_code\": \"N21 2DE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"GZ 32 08 38\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1998-12-21\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Maria Helena\",\n            \"Preferred_given_name\": \"Maria\",\n            \"Surname\": \"Öhlin\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"maria.ohlin@demo.sympa.com\",\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46062\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"701740635\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Funäsvägen 66\",\n            \"Postal_code\": \"797 35\",\n            \"City\": \"Avesta\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"960715-1641\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-07-15\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Mariabella\",\n            \"Preferred_given_name\": \"Mariabella\",\n            \"Surname\": \"Hunt\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"mariabella.hunt@sympademo.com\",\n            \"Phone_number_work\": \"+44 7067 964469\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44124\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"mariabella.hunt@sympademo.com\",\n            \"Phone_number_private\": \"+44 7945 881896\",\n            \"CO_Address\": null,\n            \"Street_address\": \"221B Baker Street\",\n            \"Postal_code\": \"NW1 6XE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"YH 40 93 89\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1979-11-04\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marianna Ella\",\n            \"Preferred_given_name\": \"Marianna\",\n            \"Surname\": \"Järvi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marianna.jarvi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1036\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35838\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"marianna.jarvi@sympademo.com\",\n            \"Phone_number_private\": \"044 028 4474\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kaitaantie 6 C 33\",\n            \"Postal_code\": \"02150\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050966-472R\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-09-05\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marjatta Taika Ruut\",\n            \"Preferred_given_name\": \"Marjatta\",\n            \"Surname\": \"Korhonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marjatta.korhonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1024\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35804\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"marjatta.korhonen@sympademo.com\",\n            \"Phone_number_private\": \"040 254 5815\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Olarinluoma 6 E 35\",\n            \"Postal_code\": \"02200\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"020273-125S\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-02-02\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marjory Ravenna\",\n            \"Preferred_given_name\": \"Marjory\",\n            \"Surname\": \"Burton\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marjory.burton@sympademo.com\",\n            \"Phone_number_work\": \"+44 7862 052554\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44122\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"marjory.burton@sympademo.com\",\n            \"Phone_number_private\": \"+44 7927 657038\",\n            \"CO_Address\": null,\n            \"Street_address\": \"1 Buckingham Palace Road\",\n            \"Postal_code\": \"SW1W 0RP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZL 88 12 95\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1981-03-08\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marnie Cathy\",\n            \"Preferred_given_name\": \"Marnie\",\n            \"Surname\": \"Stevens\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marnie.stevens@sympademo.com\",\n            \"Phone_number_work\": \"+44 7750 451394\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44118\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"marnie.stevens@sympademo.com\",\n            \"Phone_number_private\": \"+44 7811 454312\",\n            \"CO_Address\": null,\n            \"Street_address\": \"2 Eaton Square\",\n            \"Postal_code\": \"SW1W 9BJ\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ML 14 89 00 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1984-02-04\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Martina Katharina\",\n            \"Preferred_given_name\": \"Martina\",\n            \"Surname\": \"Jonsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"martina.jonsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 457\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46046\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"martina.jonsson@sympademo.com\",\n            \"Phone_number_private\": \"701740612\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Solskensgränd 3\",\n            \"Postal_code\": \"173 47\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"931031-2385\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1993-10-31\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Matleena Sirpa\",\n            \"Preferred_given_name\": \"Matleena\",\n            \"Surname\": \"Aaltonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"matleena.aaltonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1030\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35807\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"matleena.aaltonen@sympademo.com\",\n            \"Phone_number_private\": \"050 805 5973\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Leppävaarankatu 4 D 5\",\n            \"Postal_code\": \"02600\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050600A487S\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2000-06-05\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Milja Pilvi Sini\",\n            \"Preferred_given_name\": \"Milja\",\n            \"Surname\": \"Rantanen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"milja.rantanen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1042\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35843\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"milja.rantanen@sympademo.com\",\n            \"Phone_number_private\": \"044 117 4743\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Mechelininkatu 1 A 7\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"210374-331R\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1974-03-21\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Milla\",\n            \"Preferred_given_name\": \"Milla\",\n            \"Surname\": \"Takala\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"milla.takala@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1049\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35850\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": \"milla.takala@sympademo.com\",\n            \"Phone_number_private\": \"046 888 3564\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Latokartanontie 1 C 3\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"260361-4725\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1961-03-26\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Mimosa\",\n            \"Preferred_given_name\": \"Mimosa\",\n            \"Surname\": \"Seppä\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"mimosa.seppa@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1034\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35836\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"mimosa.seppa@sympademo.com\",\n            \"Phone_number_private\": \"046 324 4799\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kivistönmäentie 8 B 3\",\n            \"Postal_code\": \"01230\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"190991-413A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-09-19\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Muhammad Yussuf\",\n            \"Preferred_given_name\": \"Muhammad\",\n            \"Surname\": \"Ulfsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"muhammad.ulfsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 459\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46048\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"muhammad.ulfsson@sympademo.com\",\n            \"Phone_number_private\": \"701740610\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kungsvägen 5\",\n            \"Postal_code\": \"187 34\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"940111-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1994-01-11\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Mwenye\",\n            \"Preferred_given_name\": \"Mwenye\",\n            \"Surname\": \"Olanrewaju\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"mwenye.olanrewaju@sympademo.com\",\n            \"Phone_number_work\": \"+44 7771 271595\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44137\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"mwenye.olanrewaju@sympademo.com\",\n            \"Phone_number_private\": \"+44 7943 109133\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Downing Street\",\n            \"Postal_code\": \"SW1A 2AA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"EW 22 20 19 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-08-20\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Nasir\",\n            \"Preferred_given_name\": \"Nasir\",\n            \"Surname\": \"Nuñez\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"nasir.nunez@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 462\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46051\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46025\",\n            \"E-mail_address_private\": \"nasir.nunez@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kryddnejlikavägen 4\",\n            \"Postal_code\": \"187 36\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"630731-2774\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-07-31\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Nea\",\n            \"Preferred_given_name\": \"Nea\",\n            \"Surname\": \"Lund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"nea.lund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 449\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46038\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"nea.lund@sympademo.com\",\n            \"Phone_number_private\": \"701740620\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Sjöfågelvägen 8\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"570818-2810\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1957-08-18\",\n            \"Original_hire_date\": \"2017-09-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Nestori\",\n            \"Preferred_given_name\": \"Nestori\",\n            \"Surname\": \"Salminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"nestori.salminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1011\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35829\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"nestori.salminen@sympademo.com\",\n            \"Phone_number_private\": \"042 791 2878\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Fabianinkatu 27 B 18\",\n            \"Postal_code\": \"00130\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"020763-884P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-07-02\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Omar\",\n            \"Preferred_given_name\": \"Omar\",\n            \"Surname\": \"Rodriguez\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"omar.rodriguez@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 479\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46018\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"omar.rodriguez@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lugna Gatan 11\",\n            \"Postal_code\": \"111 49\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"911203-2389\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-12-03\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Oskari Matias\",\n            \"Preferred_given_name\": \"Oskari\",\n            \"Surname\": \"Sorvisto\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"eskari.sorvisto@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1051\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35852\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"niko.varis@sympademo.com\",\n            \"Phone_number_private\": \"044 367 9128\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Aleksanterinkatu 10\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"280992-987B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1992-09-18\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Otto\",\n            \"Preferred_given_name\": \"Otto\",\n            \"Surname\": \"Patriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"otto.patriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 469\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46058\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"otto.patriksson@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Vikingavägen 12\",\n            \"Postal_code\": \"172 75\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881116-2398\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-11-16\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Päivä\",\n            \"Preferred_given_name\": \"Päivä\",\n            \"Surname\": \"Lehtinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"paiva.lehtinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1048\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35849\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"paiva.lehtinen@sympademo.com\",\n            \"Phone_number_private\": \"040 422 2424\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Aleksanterinkatu 9 B 4\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"081197-8394\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-11-08\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Patrick Finn\",\n            \"Preferred_given_name\": \"Patrick\",\n            \"Surname\": \"Lindberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"patrick.lindberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 477\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46016\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"patrick.lindberg@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björnvägen 21\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"631007-2993\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-10-07\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Patti Cheryl\",\n            \"Preferred_given_name\": \"Patti\",\n            \"Surname\": \"Plaskett\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"patti.plaskett@sympademo.com\",\n            \"Phone_number_work\": \"+44 7005 156863\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44140\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"patti.plaskett@sympademo.com\",\n            \"Phone_number_private\": \"+44 7807 481546\",\n            \"CO_Address\": null,\n            \"Street_address\": \"8 Chelsea Embankment\",\n            \"Postal_code\": \"SW3 4LY\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JP 43 73 01 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-10-12\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Petter Caj\",\n            \"Preferred_given_name\": \"Petter\",\n            \"Surname\": \"Hult\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"petter.hult@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 478\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46017\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"petter.hult@sympademo.com\",\n            \"Phone_number_private\": \"701740631\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rosenstigen 17\",\n            \"Postal_code\": \"192 45\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"680502-9268\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1968-05-02\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Pierre al-Latif\",\n            \"Preferred_given_name\": \"Pierre\",\n            \"Surname\": \"Lundström\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"pierre.lundstrom@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 473\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46012\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"pierre.lundstrom@sympademo.com\",\n            \"Phone_number_private\": \"701740631\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Vikingavägen 12\",\n            \"Postal_code\": \"172 75\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"611111-2956\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1961-11-11\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Prateek\",\n            \"Preferred_given_name\": \"Prateek\",\n            \"Surname\": \"Chaudhri\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"prateek.chaudhri@sympademo.com\",\n            \"Phone_number_work\": \"+44 7884 153808\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44116\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"prateek.chaudhri@sympademo.com\",\n            \"Phone_number_private\": \"+44 7924 782530\",\n            \"CO_Address\": null,\n            \"Street_address\": \"15 Saxon Road\",\n            \"Postal_code\": \"WD24 6BS\",\n            \"City\": \"Watford\",\n            \"Region\": \"Hertfordshire\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"SG 19 01 32\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-12-09\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Presley\",\n            \"Preferred_given_name\": \"Presley\",\n            \"Surname\": \"Henryson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"presley.henryson@sympademo.com\",\n            \"Phone_number_work\": \"+44 7888 006569\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44104\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44081\",\n            \"E-mail_address_private\": \"presley.henryson@sympademo.com\",\n            \"Phone_number_private\": \"+44 7951 914097\",\n            \"CO_Address\": null,\n            \"Street_address\": \"51 Greenhill Road\",\n            \"Postal_code\": \"HA1 1LE\",\n            \"City\": \"Harrow\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LB 54 26 55\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1977-12-22\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ralph\",\n            \"Preferred_given_name\": \"Ralph\",\n            \"Surname\": \"Abrams\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ralph.abrams@sympademo.com\",\n            \"Phone_number_work\": \"+44 7083 667132\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44081\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"ralph.abrams@sympademo.com\",\n            \"Phone_number_private\": \"+44 7733 520156\",\n            \"CO_Address\": null,\n            \"Street_address\": \"35 Oakwood Avenue\",\n            \"Postal_code\": \"HA6 8EJ\",\n            \"City\": \"Northwood\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JX 08 18 65 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2000-07-27\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ralph Nils\",\n            \"Preferred_given_name\": \"Ralph\",\n            \"Surname\": \"Björk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ralph.bjork@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 470\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46059\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"ralph.bjork@sympademo.com\",\n            \"Phone_number_private\": \"701740632\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallstigen 13\",\n            \"Postal_code\": \"194 33\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971213-2399\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1997-12-13\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Rebekka Taina\",\n            \"Preferred_given_name\": \"Rebekka\",\n            \"Surname\": \"Kulmala\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"rebekka.kulmala@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1040\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35841\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"rebekka.kulmala@sympademo.com\",\n            \"Phone_number_private\": \"046 761 7033\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonlahdentie 10 A 3\",\n            \"Postal_code\": \"02320\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"030765-565K\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1965-07-03\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Regina\",\n            \"Preferred_given_name\": \"Regina\",\n            \"Surname\": \"Ivarsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"regina.ivarsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 450\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46039\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"regina.ivarsson@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövstavägen 11\",\n            \"Postal_code\": \"194 47\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"711002-1834\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-10-02\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Richard Lars\",\n            \"Preferred_given_name\": \"Richard\",\n            \"Surname\": \"Sundberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"richard.sundberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 483\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46022\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"richard.sundberg@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallvägen 21\",\n            \"Postal_code\": \"194 54\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"861010-9996\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-10-10\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ridley\",\n            \"Preferred_given_name\": \"Ridley\",\n            \"Surname\": \"Rodgers\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"demoesign@outlook.com\",\n            \"Phone_number_work\": \"+44 7051 142664\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44132\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"ridley.rodgers@sympademo.com\",\n            \"Phone_number_private\": \"+44 7965 240365\",\n            \"CO_Address\": null,\n            \"Street_address\": \"6 South Grove\",\n            \"Postal_code\": \"N6 6BS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"GS 79 33 73 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-11-12\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ruut Anu Elina\",\n            \"Preferred_given_name\": \"Ruut\",\n            \"Surname\": \"Karppinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ruut.karppinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1023\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35803\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35828\",\n            \"E-mail_address_private\": \"ruut.karppinen@sympademo.com\",\n            \"Phone_number_private\": \"046 389 9829\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pursimiehenkatu 2 A 6\",\n            \"Postal_code\": \"00150\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"200475-5485\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1975-04-20\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Salli Aira Ada\",\n            \"Preferred_given_name\": \"Salli\",\n            \"Surname\": \"Tähtinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"salli.tahtinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1025\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35805\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"salli.tahtinen@sympademo.com\",\n            \"Phone_number_private\": \"044 466 1180\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Martinkyläntie 52 E 9\",\n            \"Postal_code\": \"01720\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"190787-016V\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1987-07-19\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sanna Anniina Vieno\",\n            \"Preferred_given_name\": \"Sanna\",\n            \"Surname\": \"Ruoko\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sanna.ruoko@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1022\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35802\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": \"sanna.ruoho@sympademo.com\",\n            \"Phone_number_private\": \"050 399 4212\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kuusitie 8 D 32\",\n            \"Postal_code\": \"01760\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"020172-582E\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1972-01-02\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sanni Helka\",\n            \"Preferred_given_name\": \"Sanni\",\n            \"Surname\": \"Salminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sanni.salminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1039\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35840\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"sanni.salminen@sympademo.com\",\n            \"Phone_number_private\": \"041 177 8389\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Runeberginkatu 2 D 8\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010774-570S\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1974-07-01\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Shauna Jacqui\",\n            \"Preferred_given_name\": \"Shauna\",\n            \"Surname\": \"Benton\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"shauna.benton@sympademo.com\",\n            \"Phone_number_work\": \"+44 7074 222057\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44051\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44150\",\n            \"E-mail_address_private\": \"shauna.benton@sympademo.com\",\n            \"Phone_number_private\": \"+44 7955 521549\",\n            \"CO_Address\": null,\n            \"Street_address\": \"45 Park Avenue\",\n            \"Postal_code\": \"SW14 8RB\",\n            \"City\": \"Richmond\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NZ 95 33 28 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1970-07-04\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Shevaun Steph\",\n            \"Preferred_given_name\": \"Shevaun\",\n            \"Surname\": \"Edwardson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"shevaun.edwardson@sympademo.com\",\n            \"Phone_number_work\": \"+44 7724 445772\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44141\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"shevaun.edwardson@sympademo.com\",\n            \"Phone_number_private\": \"+44 7942 038083\",\n            \"CO_Address\": null,\n            \"Street_address\": \"12 Trafalgar Square\",\n            \"Postal_code\": \"WC2N 5DS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NA 27 79 64 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1980-10-05\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sune Max\",\n            \"Preferred_given_name\": \"Sune\",\n            \"Surname\": \"Lundgren\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sune.lundgren@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 472\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46011\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"sune.lundgren@sympademo.com\",\n            \"Phone_number_private\": \"701740610\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Skogsbrynet 22\",\n            \"Postal_code\": \"187 41\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"600214-2682\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1960-02-14\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Svetlana\",\n            \"Preferred_given_name\": \"Svetlana\",\n            \"Surname\": \"Wrona\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"svetlana.wrona@sympademo.com\",\n            \"Phone_number_work\": \"+44 7779 716101\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44091\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"svetlana.wrona@sympademo.com\",\n            \"Phone_number_private\": \"+44 7779 915668\",\n            \"CO_Address\": null,\n            \"Street_address\": \"12 Hammersmith Road\",\n            \"Postal_code\": \"W14 8XJ\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TC 95 50 28 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1965-05-26\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sylvi\",\n            \"Preferred_given_name\": \"Sylvi\",\n            \"Surname\": \"Takala\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sylvi.takala@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1047\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35848\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"sylvi.takala@sympademo.com\",\n            \"Phone_number_private\": \"050 640 5442\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hakunilantie 5 C 23\",\n            \"Postal_code\": \"01200\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"080102A7035\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2002-01-08\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sylvi\",\n            \"Preferred_given_name\": \"Sylvi\",\n            \"Surname\": \"Olofsdotter\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sylvi.olofsdotter@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 444\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46033\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"sylvi.olofsdotter@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kardemummavägen 7\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881116-2398\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1988-11-16\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Taavi Jari Joel\",\n            \"Preferred_given_name\": \"Taavi\",\n            \"Surname\": \"Karppinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"taavi.karppinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1018\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35822\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"taavi.karppinen@sympademo.com\",\n            \"Phone_number_private\": \"042 657 0362\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonkartanonkuja 4 A\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"150677-687J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1977-06-15\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tage Tobias\",\n            \"Preferred_given_name\": \"Tage\",\n            \"Surname\": \"Alvarsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tage.alvarsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 471\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46010\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"tage.alvarsson@sympademo.com\",\n            \"Phone_number_private\": \"701740620\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kardemummavägen 7\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881213-2382\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-12-13\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Taina Heleena Riina\",\n            \"Preferred_given_name\": \"Taina\",\n            \"Surname\": \"Tuominen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"taina.tuominen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1043\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35844\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"taina.tuominen@sympademo.com\",\n            \"Phone_number_private\": \"041 045 7026\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kuusenpihkatie 8 E 27\",\n            \"Postal_code\": \"02210\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"021072-775X\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1972-10-02\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tatiana Alfhild\",\n            \"Preferred_given_name\": \"Tatiana\",\n            \"Surname\": \"Blomgren\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tatiana.blomgren@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 437\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46026\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46018\",\n            \"E-mail_address_private\": \"tatiana.blomgren@sympademo.com\",\n            \"Phone_number_private\": \"701740617\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Havsörnsvägen 16\",\n            \"Postal_code\": \"192 72\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"981218-2393\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1998-12-18\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tekla Brita\",\n            \"Preferred_given_name\": \"Tekla\",\n            \"Surname\": \"Sjögren\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tekla.sjogren@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 436\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46025\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"tekla.sjogren@sympademo.com\",\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallvägen 21\",\n            \"Postal_code\": \"194 54\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"800820-9275\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1980-08-20\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Terhi Laila Heta\",\n            \"Preferred_given_name\": \"Terhi\",\n            \"Surname\": \"Laitinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"terhi.laitinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1041\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35842\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"terhi.laitinen@sympademo.com\",\n            \"Phone_number_private\": \"041 382 255\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pakkalankuja 2 B 44\",\n            \"Postal_code\": \"01520\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"251065-6265\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1965-10-25\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tetty\",\n            \"Preferred_given_name\": \"Tetty\",\n            \"Surname\": \"Ansel\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tetty.ansel@sympademo.com\",\n            \"Phone_number_work\": \"+44 7840 954006\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44125\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"tetty.ansel@sympademo.com\",\n            \"Phone_number_private\": \"+44 7019 500035\",\n            \"CO_Address\": null,\n            \"Street_address\": \"1 Diagon Alley\",\n            \"Postal_code\": \"WC1N 1AF\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NW 04 05 07 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1982-09-02\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Thyra Tessan\",\n            \"Preferred_given_name\": \"Thyra\",\n            \"Surname\": \"Berntsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"thyra.berntsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 438\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46027\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"thyra.berntsson@sympademo.com\",\n            \"Phone_number_private\": \"701740606\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövängsvägen 9\",\n            \"Postal_code\": \"187 39\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"991214-2388\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1999-12-14\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tomi Jesse Juhana\",\n            \"Preferred_given_name\": \"Tomi\",\n            \"Surname\": \"Laine\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tomi.laine@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1019\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35823\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"tomi.laine@sympademo.com\",\n            \"Phone_number_private\": \"046 511 9761\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hakunilantie 5 C 23\",\n            \"Postal_code\": \"01200\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"040879-246B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1979-08-04\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tor Ingmar\",\n            \"Preferred_given_name\": \"Tor\",\n            \"Surname\": \"Krona\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tor.krona@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 463\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46052\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"tor.krona@sympademo.com\",\n            \"Phone_number_private\": \"701740633\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Båtvägen 2\",\n            \"Postal_code\": \"194 45\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"640228-3367\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1964-02-28\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Torin Elihu\",\n            \"Preferred_given_name\": \"Torin\",\n            \"Surname\": \"Mohammad\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"torin.mohammad@sympademo.com\",\n            \"Phone_number_work\": \"+44 7006 549376\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44111\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44102\",\n            \"E-mail_address_private\": \"torin.mohammad@sympademo.com\",\n            \"Phone_number_private\": \"+44 7945 960643\",\n            \"CO_Address\": null,\n            \"Street_address\": \"25 Chatsworth Road\",\n            \"Postal_code\": \"NW2 4BS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"MN 55 45 71 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-12-10\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Torsten\",\n            \"Preferred_given_name\": \"Torsten\",\n            \"Surname\": \"Alfsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"torsten.alfsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 465\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46054\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"torsten.alfsson@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövängsvägen 9\",\n            \"Postal_code\": \"187 39\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"861010-9996\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-10-10\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Trecia\",\n            \"Preferred_given_name\": \"Trecia\",\n            \"Surname\": \"Donalds\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"trecia.donalds@sympademo.com\",\n            \"Phone_number_work\": \"+44 7014 817526\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44126\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"trecia.donalds@sympademo.com\",\n            \"Phone_number_private\": \"+44 7037 218190\",\n            \"CO_Address\": null,\n            \"Street_address\": \"12 Grimmauld Place\",\n            \"Postal_code\": \"N1 9FB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TA 05 11 33 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1974-05-21\",\n            \"Original_hire_date\": \"2021-05-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Trystan\",\n            \"Preferred_given_name\": \"Trystan\",\n            \"Surname\": \"Sergeant\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"trystan.sergeant@sympademo.com\",\n            \"Phone_number_work\": \"+44 7739 635279\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44135\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"trystan.sergeant@sympademo.com\",\n            \"Phone_number_private\": \"+44 7722 482812\",\n            \"CO_Address\": null,\n            \"Street_address\": \"16 Downing Street\",\n            \"Postal_code\": \"SW1A 2AA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"AR 79 09 90 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1994-06-26\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tyko Usko Pekka\",\n            \"Preferred_given_name\": \"Tyko\",\n            \"Surname\": \"Salminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tyko.salminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1002\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35831\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"tyko.salminen@sympademo.com\",\n            \"Phone_number_private\": \"046 322 7181\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rekolanmäki 4 F 42\",\n            \"Postal_code\": \"01750\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"140287-1929\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1987-02-14\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ukko\",\n            \"Preferred_given_name\": \"Ukko\",\n            \"Surname\": \"Toivonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ukko.toivonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1015\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35819\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35832\",\n            \"E-mail_address_private\": \"ukko.toivonen@sympademo.com\",\n            \"Phone_number_private\": \"040 118 0964\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kuusenpihkatie 8 E 27\",\n            \"Postal_code\": \"02210\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"261098-627B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1998-10-26\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vanamo\",\n            \"Preferred_given_name\": \"Vanamo\",\n            \"Surname\": \"Nurmi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"vanamo.nurmi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1050\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35828\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"vanamo.nurmi@sympademo.com\",\n            \"Phone_number_private\": \"042 657 0361\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Martinkyläntie 52 E 9\",\n            \"Postal_code\": \"01720\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010971-1170\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-09-01\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vance\",\n            \"Preferred_given_name\": \"Vance\",\n            \"Surname\": \"Ware\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"vance.ware@sympademo.com\",\n            \"Phone_number_work\": \"+44 7725 935255\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44105\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44051\",\n            \"E-mail_address_private\": \"vance.ware@sympademo.com\",\n            \"Phone_number_private\": \"+44 7836 712622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"4 Marley Way\",\n            \"Postal_code\": \"KT17 1SN\",\n            \"City\": \"Epsom\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"BB 32 54 06 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1984-11-23\",\n            \"Original_hire_date\": \"2018-08-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Varvara\",\n            \"Preferred_given_name\": \"Varvara\",\n            \"Surname\": \"Szymański\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"varvara.szymanski@sympademo.com\",\n            \"Phone_number_work\": \"+44 7056 548641\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44127\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"varvara.szymanski@sympademo.com\",\n            \"Phone_number_private\": \"+44 7000 044083\",\n            \"CO_Address\": null,\n            \"Street_address\": \"100A Charing Cross Road\",\n            \"Postal_code\": \"WC2H 0JG\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TS 29 57 55\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1963-09-10\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vieno Raimo Urho\",\n            \"Preferred_given_name\": \"Vieno\",\n            \"Surname\": \"Salonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"vieno.salonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1016\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35820\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35832\",\n            \"E-mail_address_private\": \"vieno.salonen@sympademo.com\",\n            \"Phone_number_private\": \"046 389 5113\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Purotie 8 C 14\",\n            \"Postal_code\": \"01370\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"220195-583A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1995-01-22\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vincent Yussuf\",\n            \"Preferred_given_name\": \"Albert\",\n            \"Surname\": \"Vincent\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"albert.vincent@sympademo.com\",\n            \"Phone_number_work\": \"+44 7040 774759\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44109\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"albert.vincent@sympademo.com\",\n            \"Phone_number_private\": \"+44 7828 737882\",\n            \"CO_Address\": null,\n            \"Street_address\": \"8 Sussex Road\",\n            \"Postal_code\": \"TW11 9LU\",\n            \"City\": \"Teddington\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"MC 03 45 79\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1970-03-08\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Will\",\n            \"Preferred_given_name\": \"Will\",\n            \"Surname\": \"Erickson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"will.erickson@sympademo.com\",\n            \"Phone_number_work\": \"+44 7882 126743\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44134\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"will.erickson@sympademo.com\",\n            \"Phone_number_private\": \"+44 7927 436821\",\n            \"CO_Address\": null,\n            \"Street_address\": \"27 Abbey Road\",\n            \"Postal_code\": \"NW8 9AY\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"OH 79 60 71\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1992-12-09\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ylva Katarina\",\n            \"Preferred_given_name\": \"Ylva\",\n            \"Surname\": \"Isaksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ylva.isaksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 439\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46028\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"ylva.isaksson@sympademo.com\",\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rostocksvägen 12\",\n            \"Postal_code\": \"192 51\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"570620-2610\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1957-06-20\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manager 01\",\n            \"Preferred_given_name\": \"Manager 01\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90114\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0010\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Other\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T12:13:41Z\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 012\",\n            \"Preferred_given_name\": \"Employee 012\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90115\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"90114\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0012\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T12:16:45Z\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 011\",\n            \"Preferred_given_name\": \"Employee 011\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90116\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"90114\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0011\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T12:30:19Z\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 022\",\n            \"Preferred_given_name\": \"Employee 022\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90119\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"90117\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0022\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 021\",\n            \"Preferred_given_name\": \"Employee 021\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90118\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"90117\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0021\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manager 02\",\n            \"Preferred_given_name\": \"Manager 02\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90117\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0020\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Other\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 032\",\n            \"Preferred_given_name\": \"Employee 032\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90122\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"90120\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0032\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 031\",\n            \"Preferred_given_name\": \"Employee 031\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90121\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"90120\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0031\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manager 03\",\n            \"Preferred_given_name\": \"Manager 03\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90120\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0030\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Other\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"active\": true\n        }\n    ]\n}"},{"id":"7d261a2c-4c32-42ef-94f9-9d6c8867c6e1","name":"Get active employees only","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericPerson?$filter=active eq true","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericPerson"],"query":[{"key":"$filter","value":"active eq true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 15:57:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericPerson\",\n    \"value\": [\n        {\n            \"Given_first_names\": \"Aaron Topi Reijo\",\n            \"Preferred_given_name\": \"Aaron\",\n            \"Surname\": \"Ruotsalainen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aaron.ruotsalainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1001\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35830\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"aaron.ruotsalainen@sympademo.com\",\n            \"Phone_number_private\": \"050 399 4191\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Leppävaarankatu 4 D 5\",\n            \"Postal_code\": \"02600\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"140274-273J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1974-02-14\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Agnes\",\n            \"Preferred_given_name\": \"Agnes\",\n            \"Surname\": \"Ask\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"agnes.ask@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 454\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46043\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"agnes.ask@sympademo.com\",\n            \"Phone_number_private\": \"701740612\",\n            \"CO_Address\": \"C/O Abrahamsson 22B\",\n            \"Street_address\": \"Nybodavägen 13\",\n            \"Postal_code\": \"114 39\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": null,\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": null,\n            \"Date_of_birth\": null,\n            \"Original_hire_date\": \"2020-12-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aimo Tapio\",\n            \"Preferred_given_name\": \"Aimo\",\n            \"Surname\": \"Laine\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aimo.laine@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1007\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35813\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35827\",\n            \"E-mail_address_private\": \"aimo.laine@sympademo.com\",\n            \"Phone_number_private\": \"046 574 2061\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kaitaantie 6 C 33\",\n            \"Postal_code\": \"02150\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010984-8810\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1984-09-01\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aino Tuulia\",\n            \"Preferred_given_name\": \"Aino\",\n            \"Surname\": \"Mäentaus\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aino.maentaus@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1915\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35854\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35834\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"040 118 9964\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pääskylänrinne 6 A 3\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"151298-932P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1998-12-15\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aki Juuso Eino\",\n            \"Preferred_given_name\": \"Aki\",\n            \"Surname\": \"Harmaajärvi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aki.harmaajarvi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1005\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35834\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35811\",\n            \"E-mail_address_private\": \"aki.harmaajarvi@sympademo.com\",\n            \"Phone_number_private\": \"050 057 5787\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kivistönmäentie 8 B 3\",\n            \"Postal_code\": \"01230\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"090571-006B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1971-05-09\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Akida\",\n            \"Preferred_given_name\": \"Akida\",\n            \"Surname\": \"Achebe\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"akida.achebe@sympademo.com\",\n            \"Phone_number_work\": \"+44 7982 053593\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44014\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"akida.achebe@sympademo.com\",\n            \"Phone_number_private\": \"+44 7757 195437\",\n            \"CO_Address\": null,\n            \"Street_address\": \"7 Park Street\",\n            \"Postal_code\": \"CR0 1YD\",\n            \"City\": \"Croydon\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"GA 56 68 83 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1998-10-30\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Akilina\",\n            \"Preferred_given_name\": \"Akilina\",\n            \"Surname\": \"Krupin\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"akilina.krupin@sympademo.com\",\n            \"Phone_number_work\": \"+44 7709 504190\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44128\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"akilina.krupin@sympademo.com\",\n            \"Phone_number_private\": \"+44 7872 045651\",\n            \"CO_Address\": null,\n            \"Street_address\": \"33 Tite Street\",\n            \"Postal_code\": \"SW3 4JP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TX 97 03 23\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1996-12-10\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Akseli Robert\",\n            \"Preferred_given_name\": \"Akseli\",\n            \"Surname\": \"Karppinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"akseli.karppinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1009\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35815\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"akseli.karppinen@sympademo.com\",\n            \"Phone_number_private\": \"046 387 9882\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Runeberginkatu 2 D 8\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"220388-4649\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-03-22\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Albert\",\n            \"Preferred_given_name\": \"Albert\",\n            \"Surname\": \"Nylund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"albert.nylund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 468\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46057\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"albert.nylund@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björkskogsvägen 3\",\n            \"Postal_code\": \"187 62\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"630206-2846\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-02-06\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Alexander Riley\",\n            \"Preferred_given_name\": \"Alexander\",\n            \"Surname\": \"Ellis\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"demoesign@outlook.com\",\n            \"Phone_number_work\": \"+44 7013 786836\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44150\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"alex.riley@sympademo.com\",\n            \"Phone_number_private\": \"+44 7955 592029\",\n            \"CO_Address\": null,\n            \"Street_address\": \"41 Dawton Lane\",\n            \"Postal_code\": \"SW2 1AN\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NX 98 03 49 P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1985-10-13\",\n            \"Original_hire_date\": \"2022-02-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Allsopp Cyril\",\n            \"Preferred_given_name\": \"Ry\",\n            \"Surname\": \"Allsopp\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ry.allsopp@sympademo.com\",\n            \"Phone_number_work\": \"+44 7816 646212\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44110\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"ry.allsopp@sympademo.com\",\n            \"Phone_number_private\": \"+44 7006 904851\",\n            \"CO_Address\": null,\n            \"Street_address\": \"13 Alderney Street\",\n            \"Postal_code\": \"SW1V 4HH\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZN 98 99 91 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1985-03-04\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Alma Isabelle\",\n            \"Preferred_given_name\": \"Alma\",\n            \"Surname\": \"Björklund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"alma.bjorklund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 943\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46063\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46037\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"0701749619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"210197-3920\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-01-21\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anabelle Suki\",\n            \"Preferred_given_name\": \"Anabelle\",\n            \"Surname\": \"Simon\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anabelle.simon@sympademo.com\",\n            \"Phone_number_work\": \"+44 7013 741942\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44120\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44142\",\n            \"E-mail_address_private\": \"anabelle.simon@sympademo.com\",\n            \"Phone_number_private\": \"+44 7983 465784\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Downing Place\",\n            \"Postal_code\": \"SE1 2AA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"HM 38 37 45\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1990-06-19\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anaya\",\n            \"Preferred_given_name\": \"Anaya\",\n            \"Surname\": \"Amin\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"Anaya.Amin@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 445\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46034\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"Anaya.Amin@sympademo.com\",\n            \"Phone_number_private\": \"701740611\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Skogsbrynet 22\",\n            \"Postal_code\": \"187 41\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"870509-3112\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1987-05-09\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anna Katariina Heta\",\n            \"Preferred_given_name\": \"Anna\",\n            \"Surname\": \"Aaltonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anna.aaltonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1044\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35845\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"anna.aaltonen@sympademo.com\",\n            \"Phone_number_private\": \"042 983 2878\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Purotie 8 C 14\",\n            \"Postal_code\": \"01370\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"100599-396T\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1999-05-10\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anne Embla\",\n            \"Preferred_given_name\": \"Anne\",\n            \"Surname\": \"Stenberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anne.stenberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 455\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46044\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"anne.stenberg@sympademo.com\",\n            \"Phone_number_private\": \"701740609\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Blomstervägen 3\",\n            \"Postal_code\": \"187 35\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"660427-3083\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-04-27\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Annette\",\n            \"Preferred_given_name\": \"Annette\",\n            \"Surname\": \"Winter\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"annette.winter@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 441\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46030\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"annette.winter@sympademo.com\",\n            \"Phone_number_private\": \"701740625\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björkskogsvägen 3\",\n            \"Postal_code\": \"187 62\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"960502-2392\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1996-05-02\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anu Camilla\",\n            \"Preferred_given_name\": \"Anu\",\n            \"Surname\": \"Tammik\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"anu.tammik@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1037\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35839\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"anu.tammik@sympademo.com\",\n            \"Phone_number_private\": \"044 197 4056\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Karsikkokuja 5 E 41\",\n            \"Postal_code\": \"01640\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"080400A777E\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2000-04-08\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Arn\",\n            \"Preferred_given_name\": \"Arn\",\n            \"Surname\": \"Hogarth\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"arn.hogarth@sympademo.com\",\n            \"Phone_number_work\": \"+44 7809 636246\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44131\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"arn.hogarth@sympademo.com\",\n            \"Phone_number_private\": \"+44 7740 984612\",\n            \"CO_Address\": null,\n            \"Street_address\": \"11 Parkway\",\n            \"Postal_code\": \"NW1 7PG\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JK 52 84 51 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1971-10-14\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Arne Kjell\",\n            \"Preferred_given_name\": \"Arne\",\n            \"Surname\": \"Lundkvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"arne.lundkvist@demo.sympa.com\",\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46060\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"701740633\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Nydalsvägen 5\",\n            \"Postal_code\": \"195 33\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"891112-2384\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-11-12\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Augusta Anjanette\",\n            \"Preferred_given_name\": \"Augusta\",\n            \"Surname\": \"Woodham\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"augusta.woodham@sympademo.com\",\n            \"Phone_number_work\": \"+44 7871 152855\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44143\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44142\",\n            \"E-mail_address_private\": \"augusta.woodham@sympademo.com\",\n            \"Phone_number_private\": \"+44 7977 770208\",\n            \"CO_Address\": null,\n            \"Street_address\": \"7 Kensington Palace Gardens\",\n            \"Postal_code\": \"W8 4PP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"WH 45 43 83 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1978-12-02\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aukusti Toivo\",\n            \"Preferred_given_name\": \"Aukusti\",\n            \"Surname\": \"Seppä\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aukusti.seppa@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1010\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35816\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"aukusti.seppa@sympademo.com\",\n            \"Phone_number_private\": \"041 045 7040\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonlahdentie 10 A 3\",\n            \"Postal_code\": \"02320\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"220889-403L\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-08-22\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aulikki\",\n            \"Preferred_given_name\": \"Aulikki\",\n            \"Surname\": \"Koskinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aulikki.koskinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1032\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35809\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"aulikki.koskinen@sympademo.com\",\n            \"Phone_number_private\": \"046 020 2086\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hämeentie 21 A 13\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"090266-344J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-02-09\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Aurora\",\n            \"Preferred_given_name\": \"Aurora\",\n            \"Surname\": \"Pajari\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"aurora.pajari@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1033\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35835\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"aurora.pajari@sympademo.com\",\n            \"Phone_number_private\": \"046 824 2497\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Perkkaantie 9 C 29\",\n            \"Postal_code\": \"02650\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"190690-2457\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1990-06-19\",\n            \"Original_hire_date\": \"2024-04-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Austyn\",\n            \"Preferred_given_name\": \"Austyn\",\n            \"Surname\": \"Britton\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"austyn.britton@sympademo.com\",\n            \"Phone_number_work\": \"+44 7777 409515\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44101\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"austyn.britton@sympademo.com\",\n            \"Phone_number_private\": \"+44 7760 459765\",\n            \"CO_Address\": null,\n            \"Street_address\": \"29 Church Street\",\n            \"Postal_code\": \"TW18 4EP\",\n            \"City\": \"Staines\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LE 89 74 13 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1976-01-19\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ava\",\n            \"Preferred_given_name\": \"Ava\",\n            \"Surname\": \"Kaplan\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ava.kaplan@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 440\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46029\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"ava.kaplan@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"750325-9280\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1975-03-25\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Benjamin\",\n            \"Preferred_given_name\": \"Benjamin\",\n            \"Surname\": \"Abney\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"benjamin.abney@sympademo.com\",\n            \"Phone_number_work\": \"+44 7840 101509\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44025\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"benjamin.abney@sympademo.com\",\n            \"Phone_number_private\": \"+44 7769 410589\",\n            \"CO_Address\": null,\n            \"Street_address\": \"16 Church Lane\",\n            \"Postal_code\": \"NW9 8SS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NP 80 95 28 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1983-01-15\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Bridger\",\n            \"Preferred_given_name\": \"Bridger\",\n            \"Surname\": \"Bone\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"bridger.bone@sympademo.com\",\n            \"Phone_number_work\": \"+44 7026 051605\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44103\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"bridger.bone@sympademo.com\",\n            \"Phone_number_private\": \"+44 7852 833221\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Riverdale Gardens\",\n            \"Postal_code\": \"N5 2PN\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"WA 00 43 03 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1993-10-23\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Cedric\",\n            \"Preferred_given_name\": \"Cedric\",\n            \"Surname\": \"Chang\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"cedric.chang@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 484\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46023\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46025\",\n            \"E-mail_address_private\": \"cedric.chang@sympademo.com\",\n            \"Phone_number_private\": \"701740623\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Havsörnsvägen 16\",\n            \"Postal_code\": \"192 72\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"670718-2991\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1967-07-18\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Chandan\",\n            \"Preferred_given_name\": \"Chandan\",\n            \"Surname\": \"Chaudhri\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"chandan.chaudhri@sympademo.com\",\n            \"Phone_number_work\": \"+44 7984 137365\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44114\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44103\",\n            \"E-mail_address_private\": \"chandan.chaudhri@sympademo.com\",\n            \"Phone_number_private\": \"+44 7823 465445\",\n            \"CO_Address\": null,\n            \"Street_address\": \"50 Cambridge Road\",\n            \"Postal_code\": \"TW11 8DR\",\n            \"City\": \"Teddington\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"OM 23 45 23\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1965-04-23\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Chandrasekhar\",\n            \"Preferred_given_name\": \"Chandrasekhar\",\n            \"Surname\": \"Nagarkar\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"chandrasekhar.nagarkar@sympademo.com\",\n            \"Phone_number_work\": \"+44 7741 969846\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44117\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"chandrasekhar.nagarkar@sympademo.com\",\n            \"Phone_number_private\": \"+44 7037 319891\",\n            \"CO_Address\": null,\n            \"Street_address\": \"5 Chestnut Grove\",\n            \"Postal_code\": \"RM11 1HX\",\n            \"City\": \"Hornchurch\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZR 33 58 56 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-12-06\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Chloé\",\n            \"Preferred_given_name\": \"Chloé\",\n            \"Surname\": \"Southwark\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"chloe.southwark@sympademo.com\",\n            \"Phone_number_work\": \"+44 7956 290840\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44151\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44105\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"+44 7956 290840\",\n            \"CO_Address\": null,\n            \"Street_address\": \"25 Chatsworth Road\",\n            \"Postal_code\": \"NW2 4BS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LM 23 45 23\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1995-05-30\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Christel Terese\",\n            \"Preferred_given_name\": \"Christel\",\n            \"Surname\": \"Frisk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"christel.frisk@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 451\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46040\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"christel.frisk@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Östersjövägen 15\",\n            \"Postal_code\": \"192 71\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"730503-2380\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-05-03\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Christina Ulrica\",\n            \"Preferred_given_name\": \"Christina\",\n            \"Surname\": \"Haraldsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"christina.haraldsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 456\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46045\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"christina.haraldsson@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Almvägen 9\",\n            \"Postal_code\": \"194 42\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"841209-9296\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1984-12-09\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Conway\",\n            \"Preferred_given_name\": \"Conway\",\n            \"Surname\": \"Bancroft\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"conway.bancroft@sympademo.com\",\n            \"Phone_number_work\": \"+44 7826 817868\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44108\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"conway.bancroft@sympademo.com\",\n            \"Phone_number_private\": \"+44 7886 990526\",\n            \"CO_Address\": null,\n            \"Street_address\": \"6 Station Road\",\n            \"Postal_code\": \"KT15 2AF\",\n            \"City\": \"Addlestone\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"KT 69 17 97\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2000-03-02\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Coretta\",\n            \"Preferred_given_name\": \"Coretta\",\n            \"Surname\": \"Garrod\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"coretta.garrod@sympademo.com\",\n            \"Phone_number_work\": \"+44 7946 755832\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44123\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"coretta.garrod@sympademo.com\",\n            \"Phone_number_private\": \"+44 7751 167832\",\n            \"CO_Address\": null,\n            \"Street_address\": \"4 Privet Drive\",\n            \"Postal_code\": \"HA4 7DS\",\n            \"City\": \"Hillingdon\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"SK 03 58 78\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-01-08\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Cortney\",\n            \"Preferred_given_name\": \"Cortney\",\n            \"Surname\": \"Ewart\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"cortney.ewart@sympademo.com\",\n            \"Phone_number_work\": \"+44 7889 635103\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44107\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44004\",\n            \"E-mail_address_private\": \"cortney.ewart@sympademo.com\",\n            \"Phone_number_private\": \"+44 7030 412162\",\n            \"CO_Address\": null,\n            \"Street_address\": \"19 Brook Street\",\n            \"Postal_code\": \"KT13 8UW\",\n            \"City\": \"Weybridge\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"PE 76 71 56\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1977-01-31\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Daria\",\n            \"Preferred_given_name\": \"Daria\",\n            \"Surname\": \"Ślusarczyk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"daria.slusarczyk@sympademo.com\",\n            \"Phone_number_work\": \"+44 7989 173582\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44004\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"daria.slusarczyk@sympademo.com\",\n            \"Phone_number_private\": \"+44 7785 269180\",\n            \"CO_Address\": null,\n            \"Street_address\": \"9 Redbridge Lane\",\n            \"Postal_code\": \"IG4 5EL\",\n            \"City\": \"Ilford\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JY 56 65 62 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1964-11-24\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Dash\",\n            \"Preferred_given_name\": \"Dash\",\n            \"Surname\": \"Walker\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"dash.walker@sympademo.com\",\n            \"Phone_number_work\": \"+44 7837 651139\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44133\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"dash.walker@sympademo.com\",\n            \"Phone_number_private\": \"+44 7756 377637\",\n            \"CO_Address\": null,\n            \"Street_address\": \"42 Baker Street\",\n            \"Postal_code\": \"NW1 6XE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LY 84 55 43\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1993-03-12\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Dennis\",\n            \"Preferred_given_name\": \"Dennis\",\n            \"Surname\": \"Eriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"dennis.eriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 73 4545999\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46064\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"dennis.eriksson@sympademo.com\",\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Grönsaksvägen 22a\",\n            \"Postal_code\": \"11111\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"891022-0000\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-10-22\",\n            \"Original_hire_date\": \"2022-08-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Eelis Eetu Väinö\",\n            \"Preferred_given_name\": \"Eelis\",\n            \"Surname\": \"Mustonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"eelis.mustonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1004\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35833\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35828\",\n            \"E-mail_address_private\": \"eelis.mustonen@sympademo.com\",\n            \"Phone_number_private\": \"041 370 0861\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Perkkaantie 9 C 29\",\n            \"Postal_code\": \"02650\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"051000A640X\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2000-10-05\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elena\",\n            \"Preferred_given_name\": \"Elena\",\n            \"Surname\": \"Zervas\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 453\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46042\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lärkvägen 17\",\n            \"Postal_code\": \"192 56\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971103-2392\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-11-03\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elina Sofia\",\n            \"Preferred_given_name\": \"Elina\",\n            \"Surname\": \"Nieminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elina.nieminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1050\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35851\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"040 521 8746\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Mannerheimintie 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"120585-123A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1985-05-12\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elis Cai\",\n            \"Preferred_given_name\": \"Elis\",\n            \"Surname\": \"Nylund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elis.nylund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 485\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46024\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"elis.nylund@sympademo.com\",\n            \"Phone_number_private\": \"701740635\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Adaptivevägen 4\",\n            \"Postal_code\": \"439 42\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"020718-2387\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2002-07-18\",\n            \"Original_hire_date\": \"2022-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elvira\",\n            \"Preferred_given_name\": \"Elvira\",\n            \"Surname\": \"Pilkvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elvira.pilkvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 448\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46037\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46016\",\n            \"E-mail_address_private\": \"elvira.pilkvist@sympademo.com\",\n            \"Phone_number_private\": \"701740633\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tuvängsvägen 19\",\n            \"Postal_code\": \"187 36\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"790808-9274\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1979-08-08\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Emilia Aino\",\n            \"Preferred_given_name\": \"Emilia\",\n            \"Surname\": \"Leskelä\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"emilia.leskelä@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1052\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35853\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35831\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"050 689 3254\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rautatienkatu 21\",\n            \"Postal_code\": \"33100\",\n            \"City\": \"Tampere\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"060781-456C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1981-07-06\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Emina\",\n            \"Preferred_given_name\": \"Emina\",\n            \"Surname\": \"Can\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"Emina.can@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 443\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46032\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46018\",\n            \"E-mail_address_private\": \"Emina.can@sympademo.com\",\n            \"Phone_number_private\": \"701740619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallstigen 13\",\n            \"Postal_code\": \"194 33\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"911227-2391\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-12-27\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fatima\",\n            \"Preferred_given_name\": \"Fatima\",\n            \"Surname\": \"Patel\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fatima.patel@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 447\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46036\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46018\",\n            \"E-mail_address_private\": \"fatima.patel@sympademo.com\",\n            \"Phone_number_private\": \"701740624\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hammarbyvägen 7\",\n            \"Postal_code\": \"118 60\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"700123-9297\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1970-01-23\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fred Andreas\",\n            \"Preferred_given_name\": \"Fred\",\n            \"Surname\": \"Holgersson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fred.holgersson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 480\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46019\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"fred.holgersson@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lugna Gatan 11\",\n            \"Postal_code\": \"111 49\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"750325-9280\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1975-03-25\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fredrik\",\n            \"Preferred_given_name\": \"Fredrik\",\n            \"Surname\": \"Lagerström\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fredrik.lagerstrom@demo.sympa.com\",\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46061\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Sjöstigen 3\",\n            \"Postal_code\": \"296 34\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971213-2401\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1997-12-13\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Geraldine Sharyl\",\n            \"Preferred_given_name\": \"Geraldine\",\n            \"Surname\": \"Woods\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"geraldine.woods@sympademo.com\",\n            \"Phone_number_work\": \"+44 7854 325404\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44142\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"geraldine.woods@sympademo.com\",\n            \"Phone_number_private\": \"+44 7831 380671\",\n            \"CO_Address\": null,\n            \"Street_address\": \"22 Leicester Square\",\n            \"Postal_code\": \"WC2H 7LE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"AE 67 97 84 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1989-12-04\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hallam Timothy\",\n            \"Preferred_given_name\": \"Hallam\",\n            \"Surname\": \"Kowalczyk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hallam.kowalczyk@sympademo.com\",\n            \"Phone_number_work\": \"+44 7018 243380\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44112\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44102\",\n            \"E-mail_address_private\": \"hallam.kowalczyk@sympademo.com\",\n            \"Phone_number_private\": \"+44 7825 841119\",\n            \"CO_Address\": null,\n            \"Street_address\": \"18 Larkfield Road\",\n            \"Postal_code\": \"NW3 2BJ\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"EE 18 03 55 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1981-06-02\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hannah\",\n            \"Preferred_given_name\": \"Hannah\",\n            \"Surname\": \"Benton-Knowles\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44152\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"hannah.benton-knowles@sympademo.com\",\n            \"Phone_number_private\": \"+44 7954 520449\",\n            \"CO_Address\": null,\n            \"Street_address\": \"41 Stiller Avenue\",\n            \"Postal_code\": \"EC1A 8RB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": null,\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": null,\n            \"Date_of_birth\": null,\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hannele Livia\",\n            \"Preferred_given_name\": \"Hannele\",\n            \"Surname\": \"Laitinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hannele.laitinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1027\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35826\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35810\",\n            \"E-mail_address_private\": \"hannele.laitinen@sympademo.com\",\n            \"Phone_number_private\": \"041 277 7375\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Bulevardi 6 A 11\",\n            \"Postal_code\": \"00120\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"071171-747T\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-11-07\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Helvi Erika\",\n            \"Preferred_given_name\": \"Helvi\",\n            \"Surname\": \"Aalto\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"helvi.aalto@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1029\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35827\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"helvi.aalto@sympademo.com\",\n            \"Phone_number_private\": \"041 367 7232\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Olarinluoma 6 E 35\",\n            \"Postal_code\": \"02200\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"261003A2998\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2003-10-26\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hilla Aina Matleena\",\n            \"Preferred_given_name\": \"Hilla\",\n            \"Surname\": \"Lahti\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hilla.lahti@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1045\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35846\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"hilla.lahti@sympademo.com\",\n            \"Phone_number_private\": \"044 066 6266\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tehtaankatu 12 A 22\",\n            \"Postal_code\": \"00140\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"280685-032V\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1985-06-28\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Hira\",\n            \"Preferred_given_name\": \"Hira\",\n            \"Surname\": \"Vemulakonda\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"hira.vemulakonda@sympademo.com\",\n            \"Phone_number_work\": \"+44 7986 283205\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44130\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"hira.vemulakonda@sympademo.com\",\n            \"Phone_number_private\": \"+44 7079 648243\",\n            \"CO_Address\": null,\n            \"Street_address\": \"14 Highfield Road\",\n            \"Postal_code\": \"NW11 9ET\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"XN 04 80 65\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1979-03-21\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Iiris\",\n            \"Preferred_given_name\": \"Iiris\",\n            \"Surname\": \"Nurmi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"iiris.nurmi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1046\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35847\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"iiris.nurmi@sympademo.com\",\n            \"Phone_number_private\": \"046 346 8831\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonkartanonkuja 4 A\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"200469-678T\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1969-04-20\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Iivo Herman Vilhelm\",\n            \"Preferred_given_name\": \"Iivo\",\n            \"Surname\": \"Saarinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"iivo.saarinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1017\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35821\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"iivo.saarinen@sympademo.com\",\n            \"Phone_number_private\": \"042 657 0362\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tehtaankatu 12 A 22\",\n            \"Postal_code\": \"00140\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050366-5724\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1966-03-05\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ingemar Hemming\",\n            \"Preferred_given_name\": \"Ingemar\",\n            \"Surname\": \"Lindholm\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ingemar.lindholm@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 475\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46014\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"ingemar.lindholm@sympademo.com\",\n            \"Phone_number_private\": \"701740624\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Sjöfågelvägen 8\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"940114-2386\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1994-01-14\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Inkeri Esteri\",\n            \"Preferred_given_name\": \"Inkeri\",\n            \"Surname\": \"Järvinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"inkeri.jarvinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1038\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35810\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"inkeri.jarvinen@sympademo.com\",\n            \"Phone_number_private\": \"050 085 8343\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Käpyläntie 5 A 9\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"140795-355M\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1995-07-14\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Isac\",\n            \"Preferred_given_name\": \"Isac\",\n            \"Surname\": \"Eriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"isac.eriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 464\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46053\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46025\",\n            \"E-mail_address_private\": \"isac.eriksson@sympademo.com\",\n            \"Phone_number_private\": \"701740626\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Ormängsvägen 8\",\n            \"Postal_code\": \"192 61\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"750404-9292\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1975-04-04\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ivan Elov\",\n            \"Preferred_given_name\": \"Ivan\",\n            \"Surname\": \"Ek\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ivan.ek@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 482\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46021\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"ivan.ek@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kastanjevägen 7\",\n            \"Postal_code\": \"183 66\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881116-2398\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-11-16\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jaakkima\",\n            \"Preferred_given_name\": \"Jaakkima\",\n            \"Surname\": \"Ruotsalainen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jaakkima.ruotsalainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1012\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35817\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"jaakkima.ruotsalainen@sympademo.com\",\n            \"Phone_number_private\": \"044 066 6754\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pakkalankuja 2 B 44\",\n            \"Postal_code\": \"01520\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050367-079F\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1967-03-05\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jaana Birgitta Kaarina\",\n            \"Preferred_given_name\": \"Jaana\",\n            \"Surname\": \"Harmaajärvi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jaana.harmaajarvi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1021\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35801\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": \"jaana.harmaajarvi@sympademo.com\",\n            \"Phone_number_private\": \"044 785 1760\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Latokartanontie 1 C 3\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010586-336P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1986-05-01\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jafari\",\n            \"Preferred_given_name\": \"Jafari\",\n            \"Surname\": \"Falana\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jafari.falana@sympademo.com\",\n            \"Phone_number_work\": \"+44 7823 590590\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44136\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"jafari.falana@sympademo.com\",\n            \"Phone_number_private\": \"+44 7019 668380\",\n            \"CO_Address\": null,\n            \"Street_address\": \"7 Portobello Road\",\n            \"Postal_code\": \"W11 3DA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LP 73 15 59 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1973-08-01\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jami\",\n            \"Preferred_given_name\": \"Jami\",\n            \"Surname\": \"Martikainen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jami.martikainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1014\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35818\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35831\",\n            \"E-mail_address_private\": \"jami.martikainen@sympademo.com\",\n            \"Phone_number_private\": \"050 640 5079\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Mechelininkatu 1 A 7\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"280504A7477\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2004-05-28\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Janika\",\n            \"Preferred_given_name\": \"Janika\",\n            \"Surname\": \"Virtanen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"janika.virtanen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1031\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35808\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"janika.virtanen@sympademo.com\",\n            \"Phone_number_private\": \"040 211 3841\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rekolanmäki 4 F 42\",\n            \"Postal_code\": \"01750\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"270363-349B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1963-03-27\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jayesh\",\n            \"Preferred_given_name\": \"Jayesh\",\n            \"Surname\": \"Narang\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jayesh.narang@sympademo.com\",\n            \"Phone_number_work\": \"+44 7820 736854\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44115\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"jayesh.narang@sympademo.com\",\n            \"Phone_number_private\": \"+44 7920 606893\",\n            \"CO_Address\": null,\n            \"Street_address\": \"9 Mount Pleasant Road\",\n            \"Postal_code\": \"N17 6TH\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"AG 53 03 41 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1964-04-25\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jerred\",\n            \"Preferred_given_name\": \"Jerred\",\n            \"Surname\": \"Braddock\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"jerred.braddock@sympademo.com\",\n            \"Phone_number_work\": \"+44 7956 200840\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44106\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44004\",\n            \"E-mail_address_private\": \"jerred.braddock@sympademo.com\",\n            \"Phone_number_private\": \"+44 7737 556787\",\n            \"CO_Address\": null,\n            \"Street_address\": \"22 Regent Street\",\n            \"Postal_code\": \"W1B 5BT\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LW 15 68 62\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1973-09-04\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Joakim Jesse Tapani\",\n            \"Preferred_given_name\": \"Joakim\",\n            \"Surname\": \"Salonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"joakim.salonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1003\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35832\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"joakim.salonen@sympademo.com\",\n            \"Phone_number_private\": \"046 138 6197\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hämeentie 21 A 13\",\n            \"Postal_code\": \"00500\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"180664-277W\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1964-06-18\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Johannes\",\n            \"Preferred_given_name\": \"Johannes\",\n            \"Surname\": \"Engman\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"johannes.engman@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 467\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46056\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"johannes.engman@sympademo.com\",\n            \"Phone_number_private\": \"701740607\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"960424-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1996-04-24\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Julia\",\n            \"Preferred_given_name\": \"Julia\",\n            \"Surname\": \"Hjort\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"julia.hjort@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 446\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46035\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"julia.hjort@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kvarnvägen 8\",\n            \"Postal_code\": \"192 42\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"640415-3832\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1964-04-15\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Jüri Aulis\",\n            \"Preferred_given_name\": \"Jüri\",\n            \"Surname\": \"Avdeyev\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"juri.avdeyev@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1020\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35824\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"juri.avdeyev@sympademo.com\",\n            \"Phone_number_private\": \"041 417 7464\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Aleksanterinkatu 9 B 4\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050382-209J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1982-03-05\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Karim\",\n            \"Preferred_given_name\": \"Karim\",\n            \"Surname\": \"Martinez\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"karim.martinez@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 476\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46015\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"karim.martinez@sympademo.com\",\n            \"Phone_number_private\": \"701740607\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Solskensgränd 3\",\n            \"Postal_code\": \"173 47\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"850113-9995\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1985-01-13\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Katharina Elsy\",\n            \"Preferred_given_name\": \"Katharina\",\n            \"Surname\": \"Lindqvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"katharina.lindqvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 458\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46047\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"katharina.lindqvist@sympademo.com\",\n            \"Phone_number_private\": \"701740627\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Dalgångsvägen 5\",\n            \"Postal_code\": \"192 69\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"040805-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2004-08-05\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Katheryn Bessie\",\n            \"Preferred_given_name\": \"Katheryn\",\n            \"Surname\": \"Adkins\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"katheryn.adkins@sympademo.com\",\n            \"Phone_number_work\": \"+44 7070 793695\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44121\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44014\",\n            \"E-mail_address_private\": \"katheryn.adkins@sympademo.com\",\n            \"Phone_number_private\": \"+44 7851 722667\",\n            \"CO_Address\": null,\n            \"Street_address\": \"17 Albert Embankment\",\n            \"Postal_code\": \"SE1 7SP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"PH 32 73 95\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1994-02-09\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Katja\",\n            \"Preferred_given_name\": \"Katja\",\n            \"Surname\": \"Rask\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"katja.rask@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 442\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46031\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"katja.rask@sympademo.com\",\n            \"Phone_number_private\": \"701740617\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rosenstigen 17\",\n            \"Postal_code\": \"192 45\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"710925-9288\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-09-25\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Khary\",\n            \"Preferred_given_name\": \"Khary\",\n            \"Surname\": \"Okoye\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"khary.okoye@sympademo.com\",\n            \"Phone_number_work\": \"+44 7087 404460\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44138\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"khary.okoye@sympademo.com\",\n            \"Phone_number_private\": \"+44 7968 362836\",\n            \"CO_Address\": null,\n            \"Street_address\": \"1 Abbey Gardens\",\n            \"Postal_code\": \"W8 4QR\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"BB 22 22 23 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1973-11-15\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kim\",\n            \"Preferred_given_name\": \"Kim\",\n            \"Surname\": \"Kairos\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kim.kairos@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 474\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46013\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"kim.kairos@sympademo.com\",\n            \"Phone_number_private\": \"701740620\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björnvägen 21\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"630120-2633\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-01-20\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kirsi Ursula\",\n            \"Preferred_given_name\": \"Kirsi\",\n            \"Surname\": \"Heikkinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kirsi.heikkinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1026\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35806\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"kirsi.heikkinen@sympademo.com\",\n            \"Phone_number_private\": \"044 875 3682\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Fabianinkatu 27 B 18\",\n            \"Postal_code\": \"00130\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"051069-102C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1969-10-05\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kobe\",\n            \"Preferred_given_name\": \"Kobe\",\n            \"Surname\": \"Iwu\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kobe.iwu@sympademo.com\",\n            \"Phone_number_work\": \"+44 7758 878004\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44139\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"kobe.iwu@sympademo.com\",\n            \"Phone_number_private\": \"+44 7710 612859\",\n            \"CO_Address\": null,\n            \"Street_address\": \"5 Baker's Row\",\n            \"Postal_code\": \"EC1R 3DB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LE 60 83 52 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1966-10-07\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kristian\",\n            \"Preferred_given_name\": \"Kristian\",\n            \"Surname\": \"Heikkinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kristian.heikkinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1013\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35825\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35810\",\n            \"E-mail_address_private\": \"kristian.heikkinen@sympademo.com\",\n            \"Phone_number_private\": \"046 283 8831\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Asentajankatu 1 C 78\",\n            \"Postal_code\": \"01510\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"291191-854L\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-11-29\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kristian Göran\",\n            \"Preferred_given_name\": \"Kristian\",\n            \"Surname\": \"Byqvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kristian.byqvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 481\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46020\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"kristian.byqvist@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kastanjevägen 7\",\n            \"Postal_code\": \"183 66\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"911128-2399\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-11-28\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kusti Henrikki\",\n            \"Preferred_given_name\": \"Kusti\",\n            \"Surname\": \"Hämäläinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kusti.hamalainen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1008\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35814\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"kusti.hamalainen@sympademo.com\",\n            \"Phone_number_private\": \"042 846 5626\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Karsikkokuja 5 E 41\",\n            \"Postal_code\": \"01640\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"031167-7454\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1967-11-03\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lamar\",\n            \"Preferred_given_name\": \"Lamar\",\n            \"Surname\": \"Blue\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lamar.blue@sympademo.com\",\n            \"Phone_number_work\": \"+44 7765 254379\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44102\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"lamar.blue@sympademo.com\",\n            \"Phone_number_private\": \"+44 7855 151318\",\n            \"CO_Address\": null,\n            \"Street_address\": \"17 Cromwell Road\",\n            \"Postal_code\": \"SW7 2EN\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NP 53 77 33 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1996-02-27\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Leanora Sutton\",\n            \"Preferred_given_name\": \"Leanora\",\n            \"Surname\": \"Clemens\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"leanora.clemens@sympademo.com\",\n            \"Phone_number_work\": \"+44 7730 507386\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44119\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44142\",\n            \"E-mail_address_private\": \"leanora.clemens@sympademo.com\",\n            \"Phone_number_private\": \"+44 7833 273826\",\n            \"CO_Address\": null,\n            \"Street_address\": \"4 Baker's Row\",\n            \"Postal_code\": \"EC1R 3DB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LC 15 15 25 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-01-20\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lena Ursula\",\n            \"Preferred_given_name\": \"Lena\",\n            \"Surname\": \"Björklund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lena.bjorklund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 452\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46041\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"lena.bjorklund@sympademo.com\",\n            \"Phone_number_private\": \"701740619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Ekdungevägen 8\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"921224-2391\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1992-12-24\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Liis\",\n            \"Preferred_given_name\": \"Liis\",\n            \"Surname\": \"Kivirand\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"liis.kivirand@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1035\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35837\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"liis.kivirand@sympademo.com\",\n            \"Phone_number_private\": \"041 455 1952\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kalliolinnantie 2 A 6\",\n            \"Postal_code\": \"00570\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"261195-135H\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1995-11-26\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lilia\",\n            \"Preferred_given_name\": \"Lilia\",\n            \"Surname\": \"Novikov\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lilia.novikov@sympademo.com\",\n            \"Phone_number_work\": \"+44 7900 077585\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44129\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"lilia.novikov@sympademo.com\",\n            \"Phone_number_private\": \"+44 7761 289507\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Puddle Lane\",\n            \"Postal_code\": \"SW17 0EY\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"XK 79 71 24 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1996-03-25\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lilibet\",\n            \"Preferred_given_name\": \"Lilibet\",\n            \"Surname\": \"Small\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lilibet.small@sympademo.com\",\n            \"Phone_number_work\": \"+44 7013 796836\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44001\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"lilibet.small@sympademo.com\",\n            \"Phone_number_private\": \"+44 7882 113844\",\n            \"CO_Address\": null,\n            \"Street_address\": \"23 High Street\",\n            \"Postal_code\": \"E1 7PS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZE 68 44 97 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2000-08-22\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lukas Fritiof\",\n            \"Preferred_given_name\": \"Lukas\",\n            \"Surname\": \"Eld\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lukas.eld@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 461\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46050\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"lukas.eld@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Östermalmsgatan 1\",\n            \"Postal_code\": \"114 42\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"891010-2386\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-10-10\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Luukas Henri\",\n            \"Preferred_given_name\": \"Luukas\",\n            \"Surname\": \"Ruoho\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"luukas.ruoho@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1006\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35812\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35827\",\n            \"E-mail_address_private\": \"luukas.ruoho@sympademo.com\",\n            \"Phone_number_private\": \"050 293 2360\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kalliolinnantie 2 A 6\",\n            \"Postal_code\": \"00570\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"040678-7347\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1978-06-04\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lyyti Pilvi\",\n            \"Preferred_given_name\": \"Lyyti\",\n            \"Surname\": \"Rautio\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lyyti.rautio@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1028\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35811\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35810\",\n            \"E-mail_address_private\": \"lyyti.rautio@sympademo.com\",\n            \"Phone_number_private\": \"050 270 0246\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonlahti 2 C 31\",\n            \"Postal_code\": \"02320\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"250991-791C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-09-25\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manny Kip\",\n            \"Preferred_given_name\": \"Manny\",\n            \"Surname\": \"Elder\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"manny.elder@sympademo.com\",\n            \"Phone_number_work\": \"+44 7941 684784\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44113\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"manny.elder@sympademo.com\",\n            \"Phone_number_private\": \"+44 7045 504603\",\n            \"CO_Address\": null,\n            \"Street_address\": \"28 The Chase\",\n            \"Postal_code\": \"N21 2DE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"GZ 32 08 38\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1998-12-21\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Maria Helena\",\n            \"Preferred_given_name\": \"Maria\",\n            \"Surname\": \"Öhlin\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"maria.ohlin@demo.sympa.com\",\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46062\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"701740635\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Funäsvägen 66\",\n            \"Postal_code\": \"797 35\",\n            \"City\": \"Avesta\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"960715-1641\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-07-15\",\n            \"Original_hire_date\": null,\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": null,\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Mariabella\",\n            \"Preferred_given_name\": \"Mariabella\",\n            \"Surname\": \"Hunt\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"mariabella.hunt@sympademo.com\",\n            \"Phone_number_work\": \"+44 7067 964469\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44124\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"mariabella.hunt@sympademo.com\",\n            \"Phone_number_private\": \"+44 7945 881896\",\n            \"CO_Address\": null,\n            \"Street_address\": \"221B Baker Street\",\n            \"Postal_code\": \"NW1 6XE\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"YH 40 93 89\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1979-11-04\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marianna Ella\",\n            \"Preferred_given_name\": \"Marianna\",\n            \"Surname\": \"Järvi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marianna.jarvi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1036\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35838\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"marianna.jarvi@sympademo.com\",\n            \"Phone_number_private\": \"044 028 4474\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kaitaantie 6 C 33\",\n            \"Postal_code\": \"02150\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050966-472R\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1966-09-05\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marjatta Taika Ruut\",\n            \"Preferred_given_name\": \"Marjatta\",\n            \"Surname\": \"Korhonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marjatta.korhonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1024\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35804\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"marjatta.korhonen@sympademo.com\",\n            \"Phone_number_private\": \"040 254 5815\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Olarinluoma 6 E 35\",\n            \"Postal_code\": \"02200\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"020273-125S\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-02-02\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marjory Ravenna\",\n            \"Preferred_given_name\": \"Marjory\",\n            \"Surname\": \"Burton\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marjory.burton@sympademo.com\",\n            \"Phone_number_work\": \"+44 7862 052554\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44122\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"marjory.burton@sympademo.com\",\n            \"Phone_number_private\": \"+44 7927 657038\",\n            \"CO_Address\": null,\n            \"Street_address\": \"1 Buckingham Palace Road\",\n            \"Postal_code\": \"SW1W 0RP\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ZL 88 12 95\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1981-03-08\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Marnie Cathy\",\n            \"Preferred_given_name\": \"Marnie\",\n            \"Surname\": \"Stevens\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"marnie.stevens@sympademo.com\",\n            \"Phone_number_work\": \"+44 7750 451394\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44118\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"marnie.stevens@sympademo.com\",\n            \"Phone_number_private\": \"+44 7811 454312\",\n            \"CO_Address\": null,\n            \"Street_address\": \"2 Eaton Square\",\n            \"Postal_code\": \"SW1W 9BJ\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"ML 14 89 00 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1984-02-04\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Martina Katharina\",\n            \"Preferred_given_name\": \"Martina\",\n            \"Surname\": \"Jonsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"martina.jonsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 457\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46046\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"martina.jonsson@sympademo.com\",\n            \"Phone_number_private\": \"701740612\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Solskensgränd 3\",\n            \"Postal_code\": \"173 47\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"931031-2385\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1993-10-31\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Matleena Sirpa\",\n            \"Preferred_given_name\": \"Matleena\",\n            \"Surname\": \"Aaltonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"matleena.aaltonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1030\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35807\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"matleena.aaltonen@sympademo.com\",\n            \"Phone_number_private\": \"050 805 5973\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Leppävaarankatu 4 D 5\",\n            \"Postal_code\": \"02600\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"050600A487S\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2000-06-05\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Milja Pilvi Sini\",\n            \"Preferred_given_name\": \"Milja\",\n            \"Surname\": \"Rantanen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"milja.rantanen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1042\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35843\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"milja.rantanen@sympademo.com\",\n            \"Phone_number_private\": \"044 117 4743\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Mechelininkatu 1 A 7\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"210374-331R\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1974-03-21\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Milla\",\n            \"Preferred_given_name\": \"Milla\",\n            \"Surname\": \"Takala\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"milla.takala@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1049\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35850\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": \"milla.takala@sympademo.com\",\n            \"Phone_number_private\": \"046 888 3564\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Latokartanontie 1 C 3\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"260361-4725\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1961-03-26\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Mimosa\",\n            \"Preferred_given_name\": \"Mimosa\",\n            \"Surname\": \"Seppä\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"mimosa.seppa@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1034\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35836\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"mimosa.seppa@sympademo.com\",\n            \"Phone_number_private\": \"046 324 4799\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kivistönmäentie 8 B 3\",\n            \"Postal_code\": \"01230\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"190991-413A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1991-09-19\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Muhammad Yussuf\",\n            \"Preferred_given_name\": \"Muhammad\",\n            \"Surname\": \"Ulfsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"muhammad.ulfsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 459\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46048\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"muhammad.ulfsson@sympademo.com\",\n            \"Phone_number_private\": \"701740610\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kungsvägen 5\",\n            \"Postal_code\": \"187 34\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"940111-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1994-01-11\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Mwenye\",\n            \"Preferred_given_name\": \"Mwenye\",\n            \"Surname\": \"Olanrewaju\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"mwenye.olanrewaju@sympademo.com\",\n            \"Phone_number_work\": \"+44 7771 271595\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44137\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"mwenye.olanrewaju@sympademo.com\",\n            \"Phone_number_private\": \"+44 7943 109133\",\n            \"CO_Address\": null,\n            \"Street_address\": \"10 Downing Street\",\n            \"Postal_code\": \"SW1A 2AA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"EW 22 20 19 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-08-20\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Nasir\",\n            \"Preferred_given_name\": \"Nasir\",\n            \"Surname\": \"Nuñez\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"nasir.nunez@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 462\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46051\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46025\",\n            \"E-mail_address_private\": \"nasir.nunez@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kryddnejlikavägen 4\",\n            \"Postal_code\": \"187 36\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"630731-2774\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-07-31\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Nea\",\n            \"Preferred_given_name\": \"Nea\",\n            \"Surname\": \"Lund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"nea.lund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 449\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46038\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"nea.lund@sympademo.com\",\n            \"Phone_number_private\": \"701740620\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Sjöfågelvägen 8\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"570818-2810\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1957-08-18\",\n            \"Original_hire_date\": \"2017-09-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Nestori\",\n            \"Preferred_given_name\": \"Nestori\",\n            \"Surname\": \"Salminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"nestori.salminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1011\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35829\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"nestori.salminen@sympademo.com\",\n            \"Phone_number_private\": \"042 791 2878\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Fabianinkatu 27 B 18\",\n            \"Postal_code\": \"00130\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"020763-884P\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-07-02\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Omar\",\n            \"Preferred_given_name\": \"Omar\",\n            \"Surname\": \"Rodriguez\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"omar.rodriguez@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 479\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46018\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"omar.rodriguez@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lugna Gatan 11\",\n            \"Postal_code\": \"111 49\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"911203-2389\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-12-03\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Oskari Matias\",\n            \"Preferred_given_name\": \"Oskari\",\n            \"Surname\": \"Sorvisto\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"eskari.sorvisto@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1051\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35852\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"niko.varis@sympademo.com\",\n            \"Phone_number_private\": \"044 367 9128\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Aleksanterinkatu 10\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"280992-987B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1992-09-18\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Otto\",\n            \"Preferred_given_name\": \"Otto\",\n            \"Surname\": \"Patriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"otto.patriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 469\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46058\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"otto.patriksson@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Vikingavägen 12\",\n            \"Postal_code\": \"172 75\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881116-2398\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-11-16\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Päivä\",\n            \"Preferred_given_name\": \"Päivä\",\n            \"Surname\": \"Lehtinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"paiva.lehtinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1048\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35849\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"paiva.lehtinen@sympademo.com\",\n            \"Phone_number_private\": \"040 422 2424\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Aleksanterinkatu 9 B 4\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"081197-8394\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-11-08\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Patrick Finn\",\n            \"Preferred_given_name\": \"Patrick\",\n            \"Surname\": \"Lindberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"patrick.lindberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 477\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46016\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"patrick.lindberg@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björnvägen 21\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"631007-2993\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-10-07\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Patti Cheryl\",\n            \"Preferred_given_name\": \"Patti\",\n            \"Surname\": \"Plaskett\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"patti.plaskett@sympademo.com\",\n            \"Phone_number_work\": \"+44 7005 156863\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44140\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"patti.plaskett@sympademo.com\",\n            \"Phone_number_private\": \"+44 7807 481546\",\n            \"CO_Address\": null,\n            \"Street_address\": \"8 Chelsea Embankment\",\n            \"Postal_code\": \"SW3 4LY\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JP 43 73 01 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1973-10-12\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Petter Caj\",\n            \"Preferred_given_name\": \"Petter\",\n            \"Surname\": \"Hult\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"petter.hult@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 478\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46017\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"petter.hult@sympademo.com\",\n            \"Phone_number_private\": \"701740631\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rosenstigen 17\",\n            \"Postal_code\": \"192 45\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"680502-9268\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1968-05-02\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Pierre al-Latif\",\n            \"Preferred_given_name\": \"Pierre\",\n            \"Surname\": \"Lundström\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"pierre.lundstrom@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 473\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46012\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"pierre.lundstrom@sympademo.com\",\n            \"Phone_number_private\": \"701740631\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Vikingavägen 12\",\n            \"Postal_code\": \"172 75\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"611111-2956\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1961-11-11\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Prateek\",\n            \"Preferred_given_name\": \"Prateek\",\n            \"Surname\": \"Chaudhri\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"prateek.chaudhri@sympademo.com\",\n            \"Phone_number_work\": \"+44 7884 153808\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44116\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"prateek.chaudhri@sympademo.com\",\n            \"Phone_number_private\": \"+44 7924 782530\",\n            \"CO_Address\": null,\n            \"Street_address\": \"15 Saxon Road\",\n            \"Postal_code\": \"WD24 6BS\",\n            \"City\": \"Watford\",\n            \"Region\": \"Hertfordshire\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"SG 19 01 32\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-12-09\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Presley\",\n            \"Preferred_given_name\": \"Presley\",\n            \"Surname\": \"Henryson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"presley.henryson@sympademo.com\",\n            \"Phone_number_work\": \"+44 7888 006569\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44104\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44081\",\n            \"E-mail_address_private\": \"presley.henryson@sympademo.com\",\n            \"Phone_number_private\": \"+44 7951 914097\",\n            \"CO_Address\": null,\n            \"Street_address\": \"51 Greenhill Road\",\n            \"Postal_code\": \"HA1 1LE\",\n            \"City\": \"Harrow\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"LB 54 26 55\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1977-12-22\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ralph\",\n            \"Preferred_given_name\": \"Ralph\",\n            \"Surname\": \"Abrams\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ralph.abrams@sympademo.com\",\n            \"Phone_number_work\": \"+44 7083 667132\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44081\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44025\",\n            \"E-mail_address_private\": \"ralph.abrams@sympademo.com\",\n            \"Phone_number_private\": \"+44 7733 520156\",\n            \"CO_Address\": null,\n            \"Street_address\": \"35 Oakwood Avenue\",\n            \"Postal_code\": \"HA6 8EJ\",\n            \"City\": \"Northwood\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"JX 08 18 65 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2000-07-27\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ralph Nils\",\n            \"Preferred_given_name\": \"Ralph\",\n            \"Surname\": \"Björk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ralph.bjork@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 470\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46059\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"ralph.bjork@sympademo.com\",\n            \"Phone_number_private\": \"701740632\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallstigen 13\",\n            \"Postal_code\": \"194 33\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971213-2399\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1997-12-13\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Rebekka Taina\",\n            \"Preferred_given_name\": \"Rebekka\",\n            \"Surname\": \"Kulmala\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"rebekka.kulmala@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1040\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35841\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"rebekka.kulmala@sympademo.com\",\n            \"Phone_number_private\": \"046 761 7033\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonlahdentie 10 A 3\",\n            \"Postal_code\": \"02320\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"030765-565K\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1965-07-03\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Regina\",\n            \"Preferred_given_name\": \"Regina\",\n            \"Surname\": \"Ivarsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"regina.ivarsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 450\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46039\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"regina.ivarsson@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövstavägen 11\",\n            \"Postal_code\": \"194 47\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"711002-1834\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-10-02\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Richard Lars\",\n            \"Preferred_given_name\": \"Richard\",\n            \"Surname\": \"Sundberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"richard.sundberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 483\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46022\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"richard.sundberg@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallvägen 21\",\n            \"Postal_code\": \"194 54\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"861010-9996\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-10-10\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ridley\",\n            \"Preferred_given_name\": \"Ridley\",\n            \"Surname\": \"Rodgers\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"demoesign@outlook.com\",\n            \"Phone_number_work\": \"+44 7051 142664\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44132\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"ridley.rodgers@sympademo.com\",\n            \"Phone_number_private\": \"+44 7965 240365\",\n            \"CO_Address\": null,\n            \"Street_address\": \"6 South Grove\",\n            \"Postal_code\": \"N6 6BS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"GS 79 33 73 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-11-12\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ruut Anu Elina\",\n            \"Preferred_given_name\": \"Ruut\",\n            \"Surname\": \"Karppinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ruut.karppinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1023\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35803\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35828\",\n            \"E-mail_address_private\": \"ruut.karppinen@sympademo.com\",\n            \"Phone_number_private\": \"046 389 9829\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pursimiehenkatu 2 A 6\",\n            \"Postal_code\": \"00150\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"200475-5485\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1975-04-20\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Salli Aira Ada\",\n            \"Preferred_given_name\": \"Salli\",\n            \"Surname\": \"Tähtinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"salli.tahtinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1025\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35805\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35830\",\n            \"E-mail_address_private\": \"salli.tahtinen@sympademo.com\",\n            \"Phone_number_private\": \"044 466 1180\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Martinkyläntie 52 E 9\",\n            \"Postal_code\": \"01720\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"190787-016V\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1987-07-19\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sanna Anniina Vieno\",\n            \"Preferred_given_name\": \"Sanna\",\n            \"Surname\": \"Ruoko\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sanna.ruoko@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1022\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35802\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35849\",\n            \"E-mail_address_private\": \"sanna.ruoho@sympademo.com\",\n            \"Phone_number_private\": \"050 399 4212\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kuusitie 8 D 32\",\n            \"Postal_code\": \"01760\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"020172-582E\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1972-01-02\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sanni Helka\",\n            \"Preferred_given_name\": \"Sanni\",\n            \"Surname\": \"Salminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sanni.salminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1039\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35840\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"sanni.salminen@sympademo.com\",\n            \"Phone_number_private\": \"041 177 8389\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Runeberginkatu 2 D 8\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Helsinki\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010774-570S\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1974-07-01\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Shauna Jacqui\",\n            \"Preferred_given_name\": \"Shauna\",\n            \"Surname\": \"Benton\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"shauna.benton@sympademo.com\",\n            \"Phone_number_work\": \"+44 7074 222057\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44051\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44150\",\n            \"E-mail_address_private\": \"shauna.benton@sympademo.com\",\n            \"Phone_number_private\": \"+44 7955 521549\",\n            \"CO_Address\": null,\n            \"Street_address\": \"45 Park Avenue\",\n            \"Postal_code\": \"SW14 8RB\",\n            \"City\": \"Richmond\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NZ 95 33 28 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1970-07-04\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Shevaun Steph\",\n            \"Preferred_given_name\": \"Shevaun\",\n            \"Surname\": \"Edwardson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"shevaun.edwardson@sympademo.com\",\n            \"Phone_number_work\": \"+44 7724 445772\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44141\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"shevaun.edwardson@sympademo.com\",\n            \"Phone_number_private\": \"+44 7942 038083\",\n            \"CO_Address\": null,\n            \"Street_address\": \"12 Trafalgar Square\",\n            \"Postal_code\": \"WC2N 5DS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NA 27 79 64 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1980-10-05\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sune Max\",\n            \"Preferred_given_name\": \"Sune\",\n            \"Surname\": \"Lundgren\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sune.lundgren@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 472\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46011\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"sune.lundgren@sympademo.com\",\n            \"Phone_number_private\": \"701740610\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Skogsbrynet 22\",\n            \"Postal_code\": \"187 41\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"600214-2682\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1960-02-14\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Svetlana\",\n            \"Preferred_given_name\": \"Svetlana\",\n            \"Surname\": \"Wrona\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"svetlana.wrona@sympademo.com\",\n            \"Phone_number_work\": \"+44 7779 716101\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44091\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44001\",\n            \"E-mail_address_private\": \"svetlana.wrona@sympademo.com\",\n            \"Phone_number_private\": \"+44 7779 915668\",\n            \"CO_Address\": null,\n            \"Street_address\": \"12 Hammersmith Road\",\n            \"Postal_code\": \"W14 8XJ\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TC 95 50 28 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1965-05-26\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sylvi\",\n            \"Preferred_given_name\": \"Sylvi\",\n            \"Surname\": \"Takala\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sylvi.takala@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1047\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35848\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"sylvi.takala@sympademo.com\",\n            \"Phone_number_private\": \"050 640 5442\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hakunilantie 5 C 23\",\n            \"Postal_code\": \"01200\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"080102A7035\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2002-01-08\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Sylvi\",\n            \"Preferred_given_name\": \"Sylvi\",\n            \"Surname\": \"Olofsdotter\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"sylvi.olofsdotter@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 444\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46033\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"sylvi.olofsdotter@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kardemummavägen 7\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881116-2398\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1988-11-16\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Taavi Jari Joel\",\n            \"Preferred_given_name\": \"Taavi\",\n            \"Surname\": \"Karppinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"taavi.karppinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1018\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35822\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"taavi.karppinen@sympademo.com\",\n            \"Phone_number_private\": \"042 657 0362\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Espoonkartanonkuja 4 A\",\n            \"Postal_code\": \"02620\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"150677-687J\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1977-06-15\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tage Tobias\",\n            \"Preferred_given_name\": \"Tage\",\n            \"Surname\": \"Alvarsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tage.alvarsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 471\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46010\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"tage.alvarsson@sympademo.com\",\n            \"Phone_number_private\": \"701740620\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kardemummavägen 7\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881213-2382\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-12-13\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Taina Heleena Riina\",\n            \"Preferred_given_name\": \"Taina\",\n            \"Surname\": \"Tuominen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"taina.tuominen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1043\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35844\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"taina.tuominen@sympademo.com\",\n            \"Phone_number_private\": \"041 045 7026\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kuusenpihkatie 8 E 27\",\n            \"Postal_code\": \"02210\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"021072-775X\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1972-10-02\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tatiana Alfhild\",\n            \"Preferred_given_name\": \"Tatiana\",\n            \"Surname\": \"Blomgren\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tatiana.blomgren@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 437\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46026\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46018\",\n            \"E-mail_address_private\": \"tatiana.blomgren@sympademo.com\",\n            \"Phone_number_private\": \"701740617\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Havsörnsvägen 16\",\n            \"Postal_code\": \"192 72\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"981218-2393\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1998-12-18\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tekla Brita\",\n            \"Preferred_given_name\": \"Tekla\",\n            \"Surname\": \"Sjögren\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tekla.sjogren@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 436\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46025\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"tekla.sjogren@sympademo.com\",\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallvägen 21\",\n            \"Postal_code\": \"194 54\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"800820-9275\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1980-08-20\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Terhi Laila Heta\",\n            \"Preferred_given_name\": \"Terhi\",\n            \"Surname\": \"Laitinen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"terhi.laitinen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1041\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35842\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35824\",\n            \"E-mail_address_private\": \"terhi.laitinen@sympademo.com\",\n            \"Phone_number_private\": \"041 382 255\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Pakkalankuja 2 B 44\",\n            \"Postal_code\": \"01520\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"251065-6265\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1965-10-25\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tetty\",\n            \"Preferred_given_name\": \"Tetty\",\n            \"Surname\": \"Ansel\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tetty.ansel@sympademo.com\",\n            \"Phone_number_work\": \"+44 7840 954006\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44125\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"tetty.ansel@sympademo.com\",\n            \"Phone_number_private\": \"+44 7019 500035\",\n            \"CO_Address\": null,\n            \"Street_address\": \"1 Diagon Alley\",\n            \"Postal_code\": \"WC1N 1AF\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"NW 04 05 07 C\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1982-09-02\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Thyra Tessan\",\n            \"Preferred_given_name\": \"Thyra\",\n            \"Surname\": \"Berntsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"thyra.berntsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 438\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46027\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"thyra.berntsson@sympademo.com\",\n            \"Phone_number_private\": \"701740606\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövängsvägen 9\",\n            \"Postal_code\": \"187 39\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"991214-2388\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1999-12-14\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tomi Jesse Juhana\",\n            \"Preferred_given_name\": \"Tomi\",\n            \"Surname\": \"Laine\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tomi.laine@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1019\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35823\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35814\",\n            \"E-mail_address_private\": \"tomi.laine@sympademo.com\",\n            \"Phone_number_private\": \"046 511 9761\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hakunilantie 5 C 23\",\n            \"Postal_code\": \"01200\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"040879-246B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1979-08-04\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tor Ingmar\",\n            \"Preferred_given_name\": \"Tor\",\n            \"Surname\": \"Krona\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tor.krona@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 463\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46052\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"tor.krona@sympademo.com\",\n            \"Phone_number_private\": \"701740633\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Båtvägen 2\",\n            \"Postal_code\": \"194 45\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"640228-3367\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1964-02-28\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Torin Elihu\",\n            \"Preferred_given_name\": \"Torin\",\n            \"Surname\": \"Mohammad\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"torin.mohammad@sympademo.com\",\n            \"Phone_number_work\": \"+44 7006 549376\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44111\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44102\",\n            \"E-mail_address_private\": \"torin.mohammad@sympademo.com\",\n            \"Phone_number_private\": \"+44 7945 960643\",\n            \"CO_Address\": null,\n            \"Street_address\": \"25 Chatsworth Road\",\n            \"Postal_code\": \"NW2 4BS\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"MN 55 45 71 A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-12-10\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Torsten\",\n            \"Preferred_given_name\": \"Torsten\",\n            \"Surname\": \"Alfsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"torsten.alfsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 465\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46054\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"torsten.alfsson@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövängsvägen 9\",\n            \"Postal_code\": \"187 39\",\n            \"City\": \"Malmö\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"861010-9996\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-10-10\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Trecia\",\n            \"Preferred_given_name\": \"Trecia\",\n            \"Surname\": \"Donalds\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"trecia.donalds@sympademo.com\",\n            \"Phone_number_work\": \"+44 7014 817526\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44126\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"trecia.donalds@sympademo.com\",\n            \"Phone_number_private\": \"+44 7037 218190\",\n            \"CO_Address\": null,\n            \"Street_address\": \"12 Grimmauld Place\",\n            \"Postal_code\": \"N1 9FB\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TA 05 11 33 D\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1974-05-21\",\n            \"Original_hire_date\": \"2021-05-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Trystan\",\n            \"Preferred_given_name\": \"Trystan\",\n            \"Surname\": \"Sergeant\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"trystan.sergeant@sympademo.com\",\n            \"Phone_number_work\": \"+44 7739 635279\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44135\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"trystan.sergeant@sympademo.com\",\n            \"Phone_number_private\": \"+44 7722 482812\",\n            \"CO_Address\": null,\n            \"Street_address\": \"16 Downing Street\",\n            \"Postal_code\": \"SW1A 2AA\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"AR 79 09 90 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1994-06-26\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tyko Usko Pekka\",\n            \"Preferred_given_name\": \"Tyko\",\n            \"Surname\": \"Salminen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tyko.salminen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1002\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35831\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"tyko.salminen@sympademo.com\",\n            \"Phone_number_private\": \"046 322 7181\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rekolanmäki 4 F 42\",\n            \"Postal_code\": \"01750\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"140287-1929\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1987-02-14\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ukko\",\n            \"Preferred_given_name\": \"Ukko\",\n            \"Surname\": \"Toivonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ukko.toivonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1015\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35819\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35832\",\n            \"E-mail_address_private\": \"ukko.toivonen@sympademo.com\",\n            \"Phone_number_private\": \"040 118 0964\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kuusenpihkatie 8 E 27\",\n            \"Postal_code\": \"02210\",\n            \"City\": \"Espoo\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"261098-627B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1998-10-26\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vanamo\",\n            \"Preferred_given_name\": \"Vanamo\",\n            \"Surname\": \"Nurmi\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"vanamo.nurmi@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1050\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35828\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35825\",\n            \"E-mail_address_private\": \"vanamo.nurmi@sympademo.com\",\n            \"Phone_number_private\": \"042 657 0361\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Martinkyläntie 52 E 9\",\n            \"Postal_code\": \"01720\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"010971-1170\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-09-01\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vance\",\n            \"Preferred_given_name\": \"Vance\",\n            \"Surname\": \"Ware\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"vance.ware@sympademo.com\",\n            \"Phone_number_work\": \"+44 7725 935255\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44105\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44051\",\n            \"E-mail_address_private\": \"vance.ware@sympademo.com\",\n            \"Phone_number_private\": \"+44 7836 712622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"4 Marley Way\",\n            \"Postal_code\": \"KT17 1SN\",\n            \"City\": \"Epsom\",\n            \"Region\": \"Surrey\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"BB 32 54 06 B\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1984-11-23\",\n            \"Original_hire_date\": \"2018-08-10\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Varvara\",\n            \"Preferred_given_name\": \"Varvara\",\n            \"Surname\": \"Szymański\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"varvara.szymanski@sympademo.com\",\n            \"Phone_number_work\": \"+44 7056 548641\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44127\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44108\",\n            \"E-mail_address_private\": \"varvara.szymanski@sympademo.com\",\n            \"Phone_number_private\": \"+44 7000 044083\",\n            \"CO_Address\": null,\n            \"Street_address\": \"100A Charing Cross Road\",\n            \"Postal_code\": \"WC2H 0JG\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"TS 29 57 55\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1963-09-10\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vieno Raimo Urho\",\n            \"Preferred_given_name\": \"Vieno\",\n            \"Surname\": \"Salonen\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"vieno.salonen@sympademo.com\",\n            \"Phone_number_work\": \"+358 40 330 1016\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"35820\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"35832\",\n            \"E-mail_address_private\": \"vieno.salonen@sympademo.com\",\n            \"Phone_number_private\": \"046 389 5113\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Purotie 8 C 14\",\n            \"Postal_code\": \"01370\",\n            \"City\": \"Vantaa\",\n            \"Region\": null,\n            \"Country\": \"Finland\",\n            \"Personal_ID_number\": \"220195-583A\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1995-01-22\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Vincent Yussuf\",\n            \"Preferred_given_name\": \"Albert\",\n            \"Surname\": \"Vincent\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"albert.vincent@sympademo.com\",\n            \"Phone_number_work\": \"+44 7040 774759\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44109\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44101\",\n            \"E-mail_address_private\": \"albert.vincent@sympademo.com\",\n            \"Phone_number_private\": \"+44 7828 737882\",\n            \"CO_Address\": null,\n            \"Street_address\": \"8 Sussex Road\",\n            \"Postal_code\": \"TW11 9LU\",\n            \"City\": \"Teddington\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"MC 03 45 79\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1970-03-08\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Will\",\n            \"Preferred_given_name\": \"Will\",\n            \"Surname\": \"Erickson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"will.erickson@sympademo.com\",\n            \"Phone_number_work\": \"+44 7882 126743\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"44134\",\n            \"Country_setting\": \"United Kingdom\",\n            \"Manager\": \"44118\",\n            \"E-mail_address_private\": \"will.erickson@sympademo.com\",\n            \"Phone_number_private\": \"+44 7927 436821\",\n            \"CO_Address\": null,\n            \"Street_address\": \"27 Abbey Road\",\n            \"Postal_code\": \"NW8 9AY\",\n            \"City\": \"London\",\n            \"Region\": \"Greater London\",\n            \"Country\": \"United Kingdom of Great Britain and Northern Ireland\",\n            \"Personal_ID_number\": \"OH 79 60 71\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1992-12-09\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ylva Katarina\",\n            \"Preferred_given_name\": \"Ylva\",\n            \"Surname\": \"Isaksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ylva.isaksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 439\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46028\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"ylva.isaksson@sympademo.com\",\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rostocksvägen 12\",\n            \"Postal_code\": \"192 51\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"570620-2610\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1957-06-20\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manager 01\",\n            \"Preferred_given_name\": \"Manager 01\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90114\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0010\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Other\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T12:13:41Z\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 012\",\n            \"Preferred_given_name\": \"Employee 012\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90115\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"90114\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0012\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T12:16:45Z\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 011\",\n            \"Preferred_given_name\": \"Employee 011\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90116\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"90114\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0011\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T12:30:19Z\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 022\",\n            \"Preferred_given_name\": \"Employee 022\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90119\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"90117\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0022\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 021\",\n            \"Preferred_given_name\": \"Employee 021\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90118\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"90117\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0021\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manager 02\",\n            \"Preferred_given_name\": \"Manager 02\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90117\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0020\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Other\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 032\",\n            \"Preferred_given_name\": \"Employee 032\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90122\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"90120\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0032\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Employee 031\",\n            \"Preferred_given_name\": \"Employee 031\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90121\",\n            \"Country_setting\": \"Finland\",\n            \"Manager\": \"90120\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0031\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Manager 03\",\n            \"Preferred_given_name\": \"Manager 03\",\n            \"Surname\": \"Test Account\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": null,\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"90120\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Test Street 1\",\n            \"Postal_code\": \"00100\",\n            \"City\": \"Test\",\n            \"Region\": \"Test\",\n            \"Country\": null,\n            \"Personal_ID_number\": \"010101-0030\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Other\",\n            \"Date_of_birth\": \"2001-01-01\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T13:12:19Z\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"active\": true\n        }\n    ]\n}"},{"id":"12ba1048-ca91-4289-8cf7-dc112bffe9cb","name":"Get a specific employee","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericPerson?$filter=Employee_number eq '46042'","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericPerson"],"query":[{"key":"$filter","value":"Employee_number eq '46042'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 15:57:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericPerson\",\n    \"value\": [\n        {\n            \"Given_first_names\": \"Elena\",\n            \"Preferred_given_name\": \"Elena\",\n            \"Surname\": \"Zervas\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 453\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46042\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lärkvägen 17\",\n            \"Postal_code\": \"192 56\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971103-2392\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-11-03\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"Test_user\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        }\n    ]\n}"},{"id":"5c1f2a06-0279-4178-8440-adeb3ad50e98","name":"Combining filters (Country and City)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericPerson?$filter=Country_setting eq 'Sweden' and City eq 'Göteborg'","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericPerson"],"query":[{"key":"$filter","value":"Country_setting eq 'Sweden' and City eq 'Göteborg'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 10:06:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericPerson\",\n    \"value\": [\n        {\n            \"Given_first_names\": \"Agnes\",\n            \"Preferred_given_name\": \"Agnes\",\n            \"Surname\": \"Ask\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"agnes.ask@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 454\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46043\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"agnes.ask@sympademo.com\",\n            \"Phone_number_private\": \"701740612\",\n            \"CO_Address\": \"C/O Abrahamsson 22B\",\n            \"Street_address\": \"Nybodavägen 13\",\n            \"Postal_code\": \"114 39\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": null,\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": null,\n            \"Date_of_birth\": null,\n            \"Original_hire_date\": \"2020-12-14\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Albert\",\n            \"Preferred_given_name\": \"Albert\",\n            \"Surname\": \"Nylund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"albert.nylund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 468\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46057\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"albert.nylund@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björkskogsvägen 3\",\n            \"Postal_code\": \"187 62\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"630206-2846\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-02-06\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Alma Isabelle\",\n            \"Preferred_given_name\": \"Alma\",\n            \"Surname\": \"Björklund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"alma.bjorklund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 943\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46063\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46037\",\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"0701749619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"210197-3920\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-01-21\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Anaya\",\n            \"Preferred_given_name\": \"Anaya\",\n            \"Surname\": \"Amin\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"Anaya.Amin@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 445\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46034\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"Anaya.Amin@sympademo.com\",\n            \"Phone_number_private\": \"701740611\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Skogsbrynet 22\",\n            \"Postal_code\": \"187 41\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"870509-3112\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1987-05-09\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Arne Kjell\",\n            \"Preferred_given_name\": \"Arne\",\n            \"Surname\": \"Lundkvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"arne.lundkvist@demo.sympa.com\",\n            \"Phone_number_work\": null,\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46060\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": null,\n            \"Phone_number_private\": \"701740633\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Nydalsvägen 5\",\n            \"Postal_code\": \"195 33\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"891112-2384\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-11-12\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ava\",\n            \"Preferred_given_name\": \"Ava\",\n            \"Surname\": \"Kaplan\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ava.kaplan@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 440\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46029\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"ava.kaplan@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"750325-9280\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1975-03-25\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Cedric\",\n            \"Preferred_given_name\": \"Cedric\",\n            \"Surname\": \"Chang\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"cedric.chang@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 484\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46023\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46025\",\n            \"E-mail_address_private\": \"cedric.chang@sympademo.com\",\n            \"Phone_number_private\": \"701740623\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Havsörnsvägen 16\",\n            \"Postal_code\": \"192 72\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"670718-2991\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1967-07-18\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Dennis\",\n            \"Preferred_given_name\": \"Dennis\",\n            \"Surname\": \"Eriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"dennis.eriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 73 4545999\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46064\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": null,\n            \"E-mail_address_private\": \"dennis.eriksson@sympademo.com\",\n            \"Phone_number_private\": null,\n            \"CO_Address\": null,\n            \"Street_address\": \"Grönsaksvägen 22a\",\n            \"Postal_code\": \"11111\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": \"Sweden\",\n            \"Personal_ID_number\": \"891022-0000\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1989-10-22\",\n            \"Original_hire_date\": \"2022-08-08\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Elena\",\n            \"Preferred_given_name\": \"Elena\",\n            \"Surname\": \"Zervas\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 453\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46042\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"elena.zervas@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lärkvägen 17\",\n            \"Postal_code\": \"192 56\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971103-2392\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1997-11-03\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fatima\",\n            \"Preferred_given_name\": \"Fatima\",\n            \"Surname\": \"Patel\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fatima.patel@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 447\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46036\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46018\",\n            \"E-mail_address_private\": \"fatima.patel@sympademo.com\",\n            \"Phone_number_private\": \"701740624\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Hammarbyvägen 7\",\n            \"Postal_code\": \"118 60\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"700123-9297\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1970-01-23\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Fred Andreas\",\n            \"Preferred_given_name\": \"Fred\",\n            \"Surname\": \"Holgersson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"fred.holgersson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 480\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46019\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"fred.holgersson@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lugna Gatan 11\",\n            \"Postal_code\": \"111 49\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"750325-9280\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1975-03-25\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Johannes\",\n            \"Preferred_given_name\": \"Johannes\",\n            \"Surname\": \"Engman\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"johannes.engman@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 467\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46056\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"johannes.engman@sympademo.com\",\n            \"Phone_number_private\": \"701740607\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Strandvägen 18\",\n            \"Postal_code\": \"115 93\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"960424-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1996-04-24\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Julia\",\n            \"Preferred_given_name\": \"Julia\",\n            \"Surname\": \"Hjort\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"julia.hjort@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 446\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46035\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"julia.hjort@sympademo.com\",\n            \"Phone_number_private\": \"701740605\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kvarnvägen 8\",\n            \"Postal_code\": \"192 42\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"640415-3832\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1964-04-15\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Karim\",\n            \"Preferred_given_name\": \"Karim\",\n            \"Surname\": \"Martinez\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"karim.martinez@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 476\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46015\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"karim.martinez@sympademo.com\",\n            \"Phone_number_private\": \"701740607\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Solskensgränd 3\",\n            \"Postal_code\": \"173 47\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"850113-9995\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1985-01-13\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Katharina Elsy\",\n            \"Preferred_given_name\": \"Katharina\",\n            \"Surname\": \"Lindqvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"katharina.lindqvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 458\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46047\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"katharina.lindqvist@sympademo.com\",\n            \"Phone_number_private\": \"701740627\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Dalgångsvägen 5\",\n            \"Postal_code\": \"192 69\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"040805-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"2004-08-05\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Kristian Göran\",\n            \"Preferred_given_name\": \"Kristian\",\n            \"Surname\": \"Byqvist\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"kristian.byqvist@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 481\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46020\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"kristian.byqvist@sympademo.com\",\n            \"Phone_number_private\": \"701740622\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kastanjevägen 7\",\n            \"Postal_code\": \"183 66\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"911128-2399\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1991-11-28\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Lena Ursula\",\n            \"Preferred_given_name\": \"Lena\",\n            \"Surname\": \"Björklund\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"lena.bjorklund@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 452\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46041\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"lena.bjorklund@sympademo.com\",\n            \"Phone_number_private\": \"701740619\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Ekdungevägen 8\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"921224-2391\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1992-12-24\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Muhammad Yussuf\",\n            \"Preferred_given_name\": \"Muhammad\",\n            \"Surname\": \"Ulfsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"muhammad.ulfsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 459\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46048\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"muhammad.ulfsson@sympademo.com\",\n            \"Phone_number_private\": \"701740610\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kungsvägen 5\",\n            \"Postal_code\": \"187 34\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"940111-2397\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1994-01-11\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Otto\",\n            \"Preferred_given_name\": \"Otto\",\n            \"Surname\": \"Patriksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"otto.patriksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 469\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46058\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"otto.patriksson@sympademo.com\",\n            \"Phone_number_private\": \"701740618\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Vikingavägen 12\",\n            \"Postal_code\": \"172 75\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881116-2398\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-11-16\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Patrick Finn\",\n            \"Preferred_given_name\": \"Patrick\",\n            \"Surname\": \"Lindberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"patrick.lindberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 477\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46016\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"patrick.lindberg@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Björnvägen 21\",\n            \"Postal_code\": \"187 32\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"631007-2993\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1963-10-07\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Pierre al-Latif\",\n            \"Preferred_given_name\": \"Pierre\",\n            \"Surname\": \"Lundström\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"pierre.lundstrom@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 473\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46012\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"pierre.lundstrom@sympademo.com\",\n            \"Phone_number_private\": \"701740631\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Vikingavägen 12\",\n            \"Postal_code\": \"172 75\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"611111-2956\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1961-11-11\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ralph Nils\",\n            \"Preferred_given_name\": \"Ralph\",\n            \"Surname\": \"Björk\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ralph.bjork@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 470\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46059\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"ralph.bjork@sympademo.com\",\n            \"Phone_number_private\": \"701740632\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallstigen 13\",\n            \"Postal_code\": \"194 33\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"971213-2399\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1997-12-13\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:03Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Regina\",\n            \"Preferred_given_name\": \"Regina\",\n            \"Surname\": \"Ivarsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"regina.ivarsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 450\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46039\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"regina.ivarsson@sympademo.com\",\n            \"Phone_number_private\": \"701740613\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövstavägen 11\",\n            \"Postal_code\": \"194 47\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"711002-1834\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1971-10-02\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Richard Lars\",\n            \"Preferred_given_name\": \"Richard\",\n            \"Surname\": \"Sundberg\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"richard.sundberg@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 483\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46022\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46027\",\n            \"E-mail_address_private\": \"richard.sundberg@sympademo.com\",\n            \"Phone_number_private\": \"701740621\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallvägen 21\",\n            \"Postal_code\": \"194 54\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"861010-9996\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1986-10-10\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tage Tobias\",\n            \"Preferred_given_name\": \"Tage\",\n            \"Surname\": \"Alvarsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tage.alvarsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 471\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46010\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46021\",\n            \"E-mail_address_private\": \"tage.alvarsson@sympademo.com\",\n            \"Phone_number_private\": \"701740620\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Kardemummavägen 7\",\n            \"Postal_code\": \"192 68\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"881213-2382\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Male\",\n            \"Date_of_birth\": \"1988-12-13\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Tekla Brita\",\n            \"Preferred_given_name\": \"Tekla\",\n            \"Surname\": \"Sjögren\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"tekla.sjogren@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 436\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46025\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46038\",\n            \"E-mail_address_private\": \"tekla.sjogren@sympademo.com\",\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Tallvägen 21\",\n            \"Postal_code\": \"194 54\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"800820-9275\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1980-08-20\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Thyra Tessan\",\n            \"Preferred_given_name\": \"Thyra\",\n            \"Surname\": \"Berntsson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"thyra.berntsson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 438\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46027\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"thyra.berntsson@sympademo.com\",\n            \"Phone_number_private\": \"701740606\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Lövängsvägen 9\",\n            \"Postal_code\": \"187 39\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"991214-2388\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1999-12-14\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        },\n        {\n            \"Given_first_names\": \"Ylva Katarina\",\n            \"Preferred_given_name\": \"Ylva\",\n            \"Surname\": \"Isaksson\",\n            \"Surname_prefix\": null,\n            \"Initials\": null,\n            \"E-mail_address_work\": \"ylva.isaksson@sympademo.com\",\n            \"Phone_number_work\": \"+46 771 751 439\",\n            \"Candidate_ID_from_ATS\": null,\n            \"Employee_number\": \"46028\",\n            \"Country_setting\": \"Sweden\",\n            \"Manager\": \"46031\",\n            \"E-mail_address_private\": \"ylva.isaksson@sympademo.com\",\n            \"Phone_number_private\": \"701740634\",\n            \"CO_Address\": null,\n            \"Street_address\": \"Rostocksvägen 12\",\n            \"Postal_code\": \"192 51\",\n            \"City\": \"Göteborg\",\n            \"Region\": null,\n            \"Country\": null,\n            \"Personal_ID_number\": \"570620-2610\",\n            \"Tax_identification_number\": null,\n            \"Juridical_gender\": \"Female\",\n            \"Date_of_birth\": \"1957-06-20\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"TESTUSER\": false,\n            \"created\": \"2024-05-03T10:21:04Z\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"c4df2b98-3d24-4529-a7d0-780b33271a01"},{"name":"Employment","id":"5a48b25f-694a-4995-9926-f28db8145f22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericEmployment","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericEmployment"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"003167c5-d88d-40c8-a693-ad955e52e4c3","name":"Get full employment history","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericEmployment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 16:01:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericEmployment\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huoltopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 65.02,\n                    \"Duration_years\": 5.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetsmekaniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 75,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.75,\n                    \"Last_day_of_probation_period\": \"2021-06-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 12.58,\n                    \"Duration_years\": 1.05,\n                    \"Valid_until\": \"2021-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetsmekaniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.05,\n                    \"Duration_years\": 3.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Hankintakoordinaattori\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-10-05\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-04-05\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 42.94,\n                    \"Duration_years\": 3.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-assistentti\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-13\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-11-13\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-05-13\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Henkilöstoassistentti\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-02-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 5.75,\n                    \"Duration_years\": 0.48,\n                    \"Valid_until\": \"2021-01-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-02-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Henkilöstoasiantuntija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 39.03,\n                    \"Duration_years\": 3.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Marketing Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-06-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-12-18\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 70.54,\n                    \"Duration_years\": 5.88,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-13\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-11-12\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.64,\n                    \"Duration_years\": 3.39,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-07-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-08-23\",\n                    \"Reason_for_employment_end\": \"Pension\",\n                    \"Additional_information\": \"Förtidspension\",\n                    \"Duration_months\": 19.65,\n                    \"Duration_years\": 1.64,\n                    \"Valid_until\": \"2023-08-23\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Group HR Director\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-28\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.15,\n                    \"Duration_years\": 2.18,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.41,\n                    \"Duration_years\": 3.37,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-assistent\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-13\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-11-12\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-05-13\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Quality Control Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-06-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-12-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 46.85,\n                    \"Duration_years\": 3.9,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Montagechef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 48,\n                    \"Duration_years\": 4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.61,\n                    \"Duration_years\": 2.22,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetsmekaniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-09-14\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 32.79,\n                    \"Duration_years\": 2.73,\n                    \"Valid_until\": \"2023-09-14\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktingenjör\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-01-06\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-07-06\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.91,\n                    \"Duration_years\": 4.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-12-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-06-16\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.6,\n                    \"Duration_years\": 4.38,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-11-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-05-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 53.75,\n                    \"Duration_years\": 4.48,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Assembly Line Supervisor\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-03-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-09-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 49.84,\n                    \"Duration_years\": 4.15,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.41,\n                    \"Duration_years\": 3.37,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-18\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.54,\n                    \"Duration_years\": 2.05,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-04-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2023-10-15\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.59,\n                    \"Duration_years\": 0.05,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Maintenance Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 65.02,\n                    \"Duration_years\": 5.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Forskare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 64.79,\n                    \"Duration_years\": 5.4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Junior Operations Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-26\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 47.21,\n                    \"Duration_years\": 3.93,\n                    \"Valid_until\": \"2022-02-01\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-02-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Senior Operations Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.04,\n                    \"Duration_years\": 2.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Product Development Engineer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-01-06\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-07-06\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.91,\n                    \"Duration_years\": 4.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-07-01\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": \"2025-01-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Product Designer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-04-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-10-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 60.88,\n                    \"Duration_years\": 5.07,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-08-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-02-26\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 56.28,\n                    \"Duration_years\": 4.69,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Assistant\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-11-07\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Inköpskoordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-10-05\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-04-05\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 42.94,\n                    \"Duration_years\": 3.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materialingenjör\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-07-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-01-16\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 69.62,\n                    \"Duration_years\": 5.8,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.87,\n                    \"Duration_years\": 3.41,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Purchasing Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-10-05\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-04-05\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 42.94,\n                    \"Duration_years\": 3.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2021-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Finance Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.05,\n                    \"Duration_years\": 3.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Senior Finance Consultant\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-11-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 31.9,\n                    \"Duration_years\": 2.66,\n                    \"Valid_until\": \"2021-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-08-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-assistent\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-08-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2023-02-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-09-22\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 13.5,\n                    \"Duration_years\": 1.13,\n                    \"Valid_until\": \"2023-09-22\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Asiakaspalvelija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-02-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-08-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.99,\n                    \"Duration_years\": 4.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetstekniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.87,\n                    \"Duration_years\": 3.41,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-06-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2023-07-23\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 23.1,\n                    \"Duration_years\": 1.92,\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-koordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-02-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 6.67,\n                    \"Duration_years\": 0.56,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-koordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"50% due to studies\",\n                    \"Duration_months\": 16,\n                    \"Duration_years\": 1.33,\n                    \"Valid_until\": \"2022-06-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-07-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-koordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 11.01,\n                    \"Duration_years\": 0.92,\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HRIS Specialist\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 11.1,\n                    \"Duration_years\": 0.93,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Kundtjänstsmedarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-02-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-08-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.99,\n                    \"Duration_years\": 4.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Marknadsanalytiker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-01-20\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 28.39,\n                    \"Duration_years\": 2.37,\n                    \"Valid_until\": \"2022-11-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-12-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"SEM specialist\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 17.08,\n                    \"Duration_years\": 1.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-04-04\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2022-10-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2024-04-04\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.05,\n                    \"Duration_years\": 2,\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-15\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-15\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 66.63,\n                    \"Duration_years\": 5.55,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materials Engineer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-01-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-07-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 63.64,\n                    \"Duration_years\": 5.3,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-10-09\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.75,\n                    \"Duration_years\": 4.31,\n                    \"Valid_until\": \"2022-07-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-08-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Työntekijän pyynnöstä osa-aikainen 80% elo-joulukuu 2022\",\n                    \"Duration_months\": 5.03,\n                    \"Duration_years\": 0.42,\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Paluu kokoaikaiseksi\",\n                    \"Duration_months\": 16.07,\n                    \"Duration_years\": 1.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-05-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Talousjohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 48.1,\n                    \"Duration_years\": 4.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Pääkirjanpitäjä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-11-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 23.82,\n                    \"Duration_years\": 1.98,\n                    \"Valid_until\": \"2020-04-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.92,\n                    \"Duration_years\": 2.16,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-10-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-04-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 54.9,\n                    \"Duration_years\": 4.58,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.69,\n                    \"Duration_years\": 2.14,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-06-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-12-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 59.04,\n                    \"Duration_years\": 4.92,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.69,\n                    \"Duration_years\": 2.14,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Operatiivinen johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-07-08\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.76,\n                    \"Duration_years\": 4.81,\n                    \"Valid_until\": \"2022-10-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-11-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Toimitusjohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"CEO\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 18.07,\n                    \"Duration_years\": 1.51,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-10-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-04-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 54.9,\n                    \"Duration_years\": 4.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerchef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-07-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-01-16\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 69.62,\n                    \"Duration_years\": 5.8,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materiaalitekniikan asiantuntija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-06-05\",\n                    \"Reason_for_employment_end\": \"Mutual agreement\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 29.24,\n                    \"Duration_years\": 2.44,\n                    \"Valid_until\": \"2023-06-05\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon esihenkilö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 36.9,\n                    \"Duration_years\": 3.07,\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-31\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-31\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.07,\n                    \"Duration_years\": 2.26,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materiaalitekniikan asiantuntija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-01-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-07-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 63.64,\n                    \"Duration_years\": 5.3,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.77,\n                    \"Duration_years\": 2.06,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-06-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-12-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 59.04,\n                    \"Duration_years\": 4.92,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Purchasing Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-09-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-03-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 43.4,\n                    \"Duration_years\": 3.62,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotekehitysinsinööri\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-01-06\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-07-06\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.91,\n                    \"Duration_years\": 4.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Redundancy\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Kvalitetskontrollant\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-06-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-12-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 46.85,\n                    \"Duration_years\": 3.9,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-03-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 68.01,\n                    \"Duration_years\": 5.67,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-03-21\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 75,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.75,\n                    \"Last_day_of_probation_period\": \"2022-09-21\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-10-21\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 19.06,\n                    \"Duration_years\": 1.59,\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materialingenjör\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-01-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-07-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 63.64,\n                    \"Duration_years\": 5.3,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Market Research Analyst\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-01-20\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 45.47,\n                    \"Duration_years\": 3.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"VD\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-07-08\",\n                    \"Employee_group\": \"CEO\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 75.83,\n                    \"Duration_years\": 6.32,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.61,\n                    \"Duration_years\": 2.22,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.92,\n                    \"Duration_years\": 2.16,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.23,\n                    \"Duration_years\": 2.1,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.92,\n                    \"Duration_years\": 2.16,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Operatiivinen johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-26\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.22,\n                    \"Duration_years\": 6.18,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-04-11\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-10-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-11-11\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 19.06,\n                    \"Duration_years\": 1.59,\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-07-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-01-16\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 69.62,\n                    \"Duration_years\": 5.8,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Research Scientist\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 64.79,\n                    \"Duration_years\": 5.4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2021-05-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Assembly Line Supervisor\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 36.11,\n                    \"Duration_years\": 3.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Transfer to a new role\",\n                    \"Duration_months\": 11.89,\n                    \"Duration_years\": 0.99,\n                    \"Valid_until\": \"2021-04-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetstekniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-11-23\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-05-23\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 41.33,\n                    \"Duration_years\": 3.44,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-10-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-04-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 54.9,\n                    \"Duration_years\": 4.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Operations Director\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-07-08\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Transfer to a new role.\",\n                    \"Duration_months\": 25.76,\n                    \"Duration_years\": 2.15,\n                    \"Valid_until\": \"2020-03-01\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-02\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Chief Executive Officer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"CEO\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.07,\n                    \"Duration_years\": 4.17,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-06-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-12-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 59.04,\n                    \"Duration_years\": 4.92,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Hankintakoordinaattori\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-09-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-03-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 43.4,\n                    \"Duration_years\": 3.62,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Henkilöstöjohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-19\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.45,\n                    \"Duration_years\": 6.2,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Product Designer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-02-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-08-18\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-09-30\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 55.39,\n                    \"Duration_years\": 4.62,\n                    \"Valid_until\": \"2023-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.23,\n                    \"Duration_years\": 2.1,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-11-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-05-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 53.75,\n                    \"Duration_years\": 4.48,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-11-23\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-05-23\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 41.33,\n                    \"Duration_years\": 3.44,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-11-23\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-05-23\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 41.33,\n                    \"Duration_years\": 3.44,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-03-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 68.01,\n                    \"Duration_years\": 5.67,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-Arkitekt\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-10-09\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 62.72,\n                    \"Duration_years\": 5.23,\n                    \"Valid_until\": \"2023-06-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-07-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-Chef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 10.12,\n                    \"Duration_years\": 0.84,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25,\n                    \"Duration_years\": 2.08,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-31\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-31\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.07,\n                    \"Duration_years\": 2.26,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon esihenkilö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-03-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-09-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 49.84,\n                    \"Duration_years\": 4.15,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktdesigner\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-02-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-08-18\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2024-08-31\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Temporary employment\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 62.49,\n                    \"Duration_years\": 5.21,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.84,\n                    \"Duration_years\": 2.24,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Verksamhetschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-26\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.22,\n                    \"Duration_years\": 6.18,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Finanschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2017-09-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2017-12-01\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 5.85,\n                    \"Duration_years\": 0.49,\n                    \"Valid_until\": \"2018-02-25\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Myyntijohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 67.09,\n                    \"Duration_years\": 5.59,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Marknadschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-06-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-12-18\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 70.54,\n                    \"Duration_years\": 5.88,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2023-06-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Finanschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 10.28,\n                    \"Duration_years\": 0.86,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Controller\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 61.63,\n                    \"Duration_years\": 5.14,\n                    \"Valid_until\": \"2023-06-25\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotantopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-15\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-15\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 66.63,\n                    \"Duration_years\": 5.55,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-chef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-19\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.45,\n                    \"Duration_years\": 6.2,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.69,\n                    \"Duration_years\": 2.14,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-03-28\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 75,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.75,\n                    \"Last_day_of_probation_period\": \"2022-09-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-12-28\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 21.06,\n                    \"Duration_years\": 1.75,\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.61,\n                    \"Duration_years\": 2.22,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Customer Service Representative\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-02-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-08-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.99,\n                    \"Duration_years\": 4.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Sales Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 67.09,\n                    \"Duration_years\": 5.59,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-17\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-07-17\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.53,\n                    \"Duration_years\": 2.29,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 18.75,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2022-07-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.99,\n                    \"Duration_years\": 2.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Inköpskoordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-09-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-03-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 43.4,\n                    \"Duration_years\": 3.62,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-04-18\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 25,\n                    \"Actual_working_hours_h/wk\": 10,\n                    \"FTE\": 0.25,\n                    \"Last_day_of_probation_period\": \"2022-10-18\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-12-31\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 20.47,\n                    \"Duration_years\": 1.71,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-12-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-06-16\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.6,\n                    \"Duration_years\": 4.38,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Markkinointianalyytikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-01-20\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 45.47,\n                    \"Duration_years\": 3.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.87,\n                    \"Duration_years\": 3.41,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Laadunvalvontateknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-06-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-12-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 46.85,\n                    \"Duration_years\": 3.9,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 18.75,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-19\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Transfer to a new role\",\n                    \"Duration_months\": 22.37,\n                    \"Duration_years\": 1.86,\n                    \"Valid_until\": \"2019-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.07,\n                    \"Duration_years\": 4.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-21\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.46,\n                    \"Duration_years\": 2.12,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.84,\n                    \"Duration_years\": 2.24,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.07,\n                    \"Duration_years\": 4.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-10-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT Consultant\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 2.79,\n                    \"Duration_years\": 0.23,\n                    \"Valid_until\": \"2020-01-01\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT Consultant\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-10-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2019-10-09\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 18.04,\n                    \"Duration_years\": 1.5,\n                    \"Valid_until\": \"2019-10-09\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-21\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.46,\n                    \"Duration_years\": 2.12,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Montagechef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-03-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-09-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 49.84,\n                    \"Duration_years\": 4.15,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-31\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-07-31\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.07,\n                    \"Duration_years\": 2.26,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.84,\n                    \"Duration_years\": 2.24,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Säljansvarig\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 67.09,\n                    \"Duration_years\": 5.59,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-03-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 30.92,\n                    \"Duration_years\": 2.58,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerchef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 37.09,\n                    \"Duration_years\": 3.09,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-17\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-17\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.53,\n                    \"Duration_years\": 2.29,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25,\n                    \"Duration_years\": 2.08,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-15\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-15\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 66.63,\n                    \"Duration_years\": 5.55,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-08-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-02-26\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 56.28,\n                    \"Duration_years\": 4.69,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-08-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-02-26\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 56.28,\n                    \"Duration_years\": 4.69,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materials Engineer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-11-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-05-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 53.75,\n                    \"Duration_years\": 4.48,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-07-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 15.67,\n                    \"Duration_years\": 1.31,\n                    \"Valid_until\": \"2023-07-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-05-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2021-05-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2021-06-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2021-09-30\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": \"2021-09-30\",\n                    \"Reason_for_employment_end\": \"Temporary employment\",\n                    \"Additional_information\": \"Seasonal Worker for Summer Season 2021\",\n                    \"Duration_months\": 4.96,\n                    \"Duration_years\": 0.41,\n                    \"Valid_until\": \"2021-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-17\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-17\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.53,\n                    \"Duration_years\": 2.29,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tutkimusinsinööri\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 64.79,\n                    \"Duration_years\": 5.4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotesuunnittelija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-02-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-08-18\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 62.49,\n                    \"Duration_years\": 5.21,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Markkinointijohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-06-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-12-18\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 70.54,\n                    \"Duration_years\": 5.88,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 44.78,\n                    \"Duration_years\": 3.73,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Support\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-02-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.05,\n                    \"Duration_years\": 2,\n                    \"Valid_until\": \"2020-08-10\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-18\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.54,\n                    \"Duration_years\": 2.05,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotesuunnittelija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-04-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-10-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 60.88,\n                    \"Duration_years\": 5.07,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.64,\n                    \"Duration_years\": 3.39,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2022-07-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Change in working time\",\n                    \"Duration_months\": 23.92,\n                    \"Duration_years\": 1.99,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2024-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.07,\n                    \"Duration_years\": 0.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Teamchef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 65.02,\n                    \"Duration_years\": 5.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Manager, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2024-08-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-09-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 70,\n                    \"Actual_working_hours_h/wk\": 28,\n                    \"FTE\": 0.7,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Manager, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": null,\n                    \"Actual_working_hours_h/wk\": 0,\n                    \"FTE\": 0,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 60,\n                    \"Actual_working_hours_h/wk\": 24,\n                    \"FTE\": 0.6,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Manager, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": null,\n                    \"Actual_working_hours_h/wk\": 0,\n                    \"FTE\": 0,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        }\n    ]\n}"},{"id":"007066f2-6259-4e74-af2a-8ac2ad7cd911","name":"Get employment entries for a given date","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericEmployment?$expand=Employment_changes($filter=Valid_until gt 2024-09-06)","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericEmployment"],"query":[{"key":"$expand","value":"Employment_changes($filter=Valid_until gt 2024-09-06)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 09:24:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericEmployment\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"Original_hire_date\": \"2022-02-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"Original_hire_date\": \"2024-04-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-07-01\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 3.22,\n                    \"Duration_years\": 0.27,\n                    \"Valid_until\": \"2025-01-31\",\n                    \"Row_ID\": \"52\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"Original_hire_date\": \"2022-08-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"Original_hire_date\": \"2022-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-06-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2023-07-23\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.24,\n                    \"Duration_years\": 2.27,\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Row_ID\": \"55\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"Original_hire_date\": \"2017-09-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"Original_hire_date\": \"2021-05-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"Original_hire_date\": \"2018-08-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"Original_hire_date\": \"2024-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"Original_hire_date\": \"2024-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        }\n    ]\n}"},{"id":"4b44e5aa-c706-4c59-96a4-47cc022d7b05","name":"Get approved employment entries","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericEmployment?$expand=Employment_changes($filter=Approval eq 5)","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericEmployment"],"query":[{"key":"$expand","value":"Employment_changes($filter=Approval eq 5)","description":"Use $expand for filtering inside an array."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 16:02:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericEmployment\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huoltopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 65.02,\n                    \"Duration_years\": 5.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetsmekaniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 75,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.75,\n                    \"Last_day_of_probation_period\": \"2021-06-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 12.58,\n                    \"Duration_years\": 1.05,\n                    \"Valid_until\": \"2021-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetsmekaniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.05,\n                    \"Duration_years\": 3.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Hankintakoordinaattori\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-10-05\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-04-05\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 42.94,\n                    \"Duration_years\": 3.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-assistentti\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-13\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-11-13\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-05-13\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Henkilöstoassistentti\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-02-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 5.75,\n                    \"Duration_years\": 0.48,\n                    \"Valid_until\": \"2021-01-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-02-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Henkilöstoasiantuntija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 39.03,\n                    \"Duration_years\": 3.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Marketing Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-06-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-12-18\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 70.54,\n                    \"Duration_years\": 5.88,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-13\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-11-12\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.64,\n                    \"Duration_years\": 3.39,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-07-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-08-23\",\n                    \"Reason_for_employment_end\": \"Pension\",\n                    \"Additional_information\": \"Förtidspension\",\n                    \"Duration_months\": 19.65,\n                    \"Duration_years\": 1.64,\n                    \"Valid_until\": \"2023-08-23\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Group HR Director\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-28\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.15,\n                    \"Duration_years\": 2.18,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.41,\n                    \"Duration_years\": 3.37,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-assistent\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-13\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-11-12\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-05-13\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Quality Control Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-06-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-12-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 46.85,\n                    \"Duration_years\": 3.9,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Montagechef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 48,\n                    \"Duration_years\": 4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.61,\n                    \"Duration_years\": 2.22,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetsmekaniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-09-14\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 32.79,\n                    \"Duration_years\": 2.73,\n                    \"Valid_until\": \"2023-09-14\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktingenjör\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-01-06\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-07-06\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.91,\n                    \"Duration_years\": 4.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-12-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-06-16\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.6,\n                    \"Duration_years\": 4.38,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-11-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-05-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 53.75,\n                    \"Duration_years\": 4.48,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Assembly Line Supervisor\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-03-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-09-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 49.84,\n                    \"Duration_years\": 4.15,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.41,\n                    \"Duration_years\": 3.37,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-18\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.54,\n                    \"Duration_years\": 2.05,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-04-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2023-10-15\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.59,\n                    \"Duration_years\": 0.05,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Maintenance Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 65.02,\n                    \"Duration_years\": 5.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Forskare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 64.79,\n                    \"Duration_years\": 5.4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Junior Operations Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-26\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 47.21,\n                    \"Duration_years\": 3.93,\n                    \"Valid_until\": \"2022-02-01\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-02-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Senior Operations Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.04,\n                    \"Duration_years\": 2.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Product Development Engineer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-01-06\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-07-06\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.91,\n                    \"Duration_years\": 4.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-07-01\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": \"2025-01-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Product Designer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-04-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-10-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 60.88,\n                    \"Duration_years\": 5.07,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-08-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-02-26\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 56.28,\n                    \"Duration_years\": 4.69,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Assistant\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2025-11-07\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Inköpskoordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-10-05\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-04-05\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 42.94,\n                    \"Duration_years\": 3.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materialingenjör\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-07-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-01-16\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 69.62,\n                    \"Duration_years\": 5.8,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.87,\n                    \"Duration_years\": 3.41,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Purchasing Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-10-05\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-04-05\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 42.94,\n                    \"Duration_years\": 3.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2021-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Finance Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.05,\n                    \"Duration_years\": 3.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Senior Finance Consultant\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-11-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 31.9,\n                    \"Duration_years\": 2.66,\n                    \"Valid_until\": \"2021-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-08-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-assistent\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-08-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2023-02-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-09-22\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 13.5,\n                    \"Duration_years\": 1.13,\n                    \"Valid_until\": \"2023-09-22\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Asiakaspalvelija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-02-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-08-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.99,\n                    \"Duration_years\": 4.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetstekniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.87,\n                    \"Duration_years\": 3.41,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-06-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2023-07-23\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 23.1,\n                    \"Duration_years\": 1.92,\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-koordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-02-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 6.67,\n                    \"Duration_years\": 0.56,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-koordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"50% due to studies\",\n                    \"Duration_months\": 16,\n                    \"Duration_years\": 1.33,\n                    \"Valid_until\": \"2022-06-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-07-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-koordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 11.01,\n                    \"Duration_years\": 0.92,\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HRIS Specialist\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 11.1,\n                    \"Duration_years\": 0.93,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Kundtjänstsmedarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-02-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-08-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.99,\n                    \"Duration_years\": 4.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Marknadsanalytiker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-01-20\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 28.39,\n                    \"Duration_years\": 2.37,\n                    \"Valid_until\": \"2022-11-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-12-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"SEM specialist\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 17.08,\n                    \"Duration_years\": 1.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-04-04\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2022-10-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2024-04-04\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.05,\n                    \"Duration_years\": 2,\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-15\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-15\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 66.63,\n                    \"Duration_years\": 5.55,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materials Engineer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-01-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-07-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 63.64,\n                    \"Duration_years\": 5.3,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-10-09\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.75,\n                    \"Duration_years\": 4.31,\n                    \"Valid_until\": \"2022-07-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-08-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Työntekijän pyynnöstä osa-aikainen 80% elo-joulukuu 2022\",\n                    \"Duration_months\": 5.03,\n                    \"Duration_years\": 0.42,\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Paluu kokoaikaiseksi\",\n                    \"Duration_months\": 16.07,\n                    \"Duration_years\": 1.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-05-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Talousjohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 48.1,\n                    \"Duration_years\": 4.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Pääkirjanpitäjä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-11-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 23.82,\n                    \"Duration_years\": 1.98,\n                    \"Valid_until\": \"2020-04-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.92,\n                    \"Duration_years\": 2.16,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-10-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-04-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 54.9,\n                    \"Duration_years\": 4.58,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.69,\n                    \"Duration_years\": 2.14,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-06-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-12-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 59.04,\n                    \"Duration_years\": 4.92,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.69,\n                    \"Duration_years\": 2.14,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Operatiivinen johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-07-08\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.76,\n                    \"Duration_years\": 4.81,\n                    \"Valid_until\": \"2022-10-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-11-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Toimitusjohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"CEO\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 18.07,\n                    \"Duration_years\": 1.51,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-10-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-04-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 54.9,\n                    \"Duration_years\": 4.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerchef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-07-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-01-16\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 69.62,\n                    \"Duration_years\": 5.8,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materiaalitekniikan asiantuntija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-06-05\",\n                    \"Reason_for_employment_end\": \"Mutual agreement\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 29.24,\n                    \"Duration_years\": 2.44,\n                    \"Valid_until\": \"2023-06-05\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon esihenkilö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 36.9,\n                    \"Duration_years\": 3.07,\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-31\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-31\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.07,\n                    \"Duration_years\": 2.26,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materiaalitekniikan asiantuntija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-01-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-07-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 63.64,\n                    \"Duration_years\": 5.3,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.77,\n                    \"Duration_years\": 2.06,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-06-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-12-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 59.04,\n                    \"Duration_years\": 4.92,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Purchasing Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-09-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-03-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 43.4,\n                    \"Duration_years\": 3.62,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotekehitysinsinööri\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-01-06\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-07-06\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 51.91,\n                    \"Duration_years\": 4.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Redundancy\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Kvalitetskontrollant\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-06-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-12-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 46.85,\n                    \"Duration_years\": 3.9,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-03-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 68.01,\n                    \"Duration_years\": 5.67,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-03-21\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 75,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.75,\n                    \"Last_day_of_probation_period\": \"2022-09-21\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-10-21\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 19.06,\n                    \"Duration_years\": 1.59,\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materialingenjör\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-01-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-07-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 63.64,\n                    \"Duration_years\": 5.3,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Market Research Analyst\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-01-20\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 45.47,\n                    \"Duration_years\": 3.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"VD\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-07-08\",\n                    \"Employee_group\": \"CEO\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 75.83,\n                    \"Duration_years\": 6.32,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.61,\n                    \"Duration_years\": 2.22,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.92,\n                    \"Duration_years\": 2.16,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.23,\n                    \"Duration_years\": 2.1,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.92,\n                    \"Duration_years\": 2.16,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Operatiivinen johtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-26\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.22,\n                    \"Duration_years\": 6.18,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-04-11\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-10-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-11-11\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 19.06,\n                    \"Duration_years\": 1.59,\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-07-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-01-16\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 69.62,\n                    \"Duration_years\": 5.8,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Research Scientist\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 64.79,\n                    \"Duration_years\": 5.4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2021-05-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Assembly Line Supervisor\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 36.11,\n                    \"Duration_years\": 3.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-05-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-11-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Transfer to a new role\",\n                    \"Duration_months\": 11.89,\n                    \"Duration_years\": 0.99,\n                    \"Valid_until\": \"2021-04-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Fastighetstekniker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-11-23\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-05-23\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 41.33,\n                    \"Duration_years\": 3.44,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-10-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-04-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 54.9,\n                    \"Duration_years\": 4.58,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Operations Director\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-07-08\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Transfer to a new role.\",\n                    \"Duration_months\": 25.76,\n                    \"Duration_years\": 2.15,\n                    \"Valid_until\": \"2020-03-01\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-02\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Chief Executive Officer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-01-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"CEO\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.07,\n                    \"Duration_years\": 4.17,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-06-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-12-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 59.04,\n                    \"Duration_years\": 4.92,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Hankintakoordinaattori\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-09-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-03-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 43.4,\n                    \"Duration_years\": 3.62,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Henkilöstöjohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-19\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.45,\n                    \"Duration_years\": 6.2,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Product Designer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-02-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-08-18\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-09-30\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 55.39,\n                    \"Duration_years\": 4.62,\n                    \"Valid_until\": \"2023-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"Test_user\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.23,\n                    \"Duration_years\": 2.1,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-11-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-05-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 53.75,\n                    \"Duration_years\": 4.48,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-11-23\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-05-23\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 41.33,\n                    \"Duration_years\": 3.44,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-11-23\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-05-23\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 41.33,\n                    \"Duration_years\": 3.44,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-03-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 68.01,\n                    \"Duration_years\": 5.67,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-Arkitekt\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-10-09\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 62.72,\n                    \"Duration_years\": 5.23,\n                    \"Valid_until\": \"2023-06-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-07-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT-Chef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 10.12,\n                    \"Duration_years\": 0.84,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25,\n                    \"Duration_years\": 2.08,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-31\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-31\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.07,\n                    \"Duration_years\": 2.26,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon esihenkilö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-03-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-09-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 49.84,\n                    \"Duration_years\": 4.15,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-06-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2024-12-01\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0,\n                    \"Duration_years\": 0,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktdesigner\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-02-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-08-18\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2024-08-31\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Temporary employment\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 62.49,\n                    \"Duration_years\": 5.21,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.84,\n                    \"Duration_years\": 2.24,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Verksamhetschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-26\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.22,\n                    \"Duration_years\": 6.18,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Finanschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2017-09-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2017-12-01\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 5.85,\n                    \"Duration_years\": 0.49,\n                    \"Valid_until\": \"2018-02-25\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Myyntijohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 67.09,\n                    \"Duration_years\": 5.59,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Marknadschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-06-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-12-18\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 70.54,\n                    \"Duration_years\": 5.88,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2024-08-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2023-06-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Finanschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 10.28,\n                    \"Duration_years\": 0.86,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Controller\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-05-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 61.63,\n                    \"Duration_years\": 5.14,\n                    \"Valid_until\": \"2023-06-25\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotantopäällikkö\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-15\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-15\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 66.63,\n                    \"Duration_years\": 5.55,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR-chef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-19\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 74.45,\n                    \"Duration_years\": 6.2,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.69,\n                    \"Duration_years\": 2.14,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-03-28\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 75,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.75,\n                    \"Last_day_of_probation_period\": \"2022-09-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-12-28\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 21.06,\n                    \"Duration_years\": 1.75,\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-14\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.61,\n                    \"Duration_years\": 2.22,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Customer Service Representative\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-02-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-08-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 50.99,\n                    \"Duration_years\": 4.25,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Sales Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 67.09,\n                    \"Duration_years\": 5.59,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-17\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-07-17\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.53,\n                    \"Duration_years\": 2.29,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 18.75,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2022-07-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.99,\n                    \"Duration_years\": 2.33,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Inköpskoordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-09-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-03-21\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 43.4,\n                    \"Duration_years\": 3.62,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-04-18\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 25,\n                    \"Actual_working_hours_h/wk\": 10,\n                    \"FTE\": 0.25,\n                    \"Last_day_of_probation_period\": \"2022-10-18\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2023-12-31\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 20.47,\n                    \"Duration_years\": 1.71,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-12-16\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-06-16\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.6,\n                    \"Duration_years\": 4.38,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Markkinointianalyytikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-07-20\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-01-20\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 45.47,\n                    \"Duration_years\": 3.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Huolto- ja kunnossapitoteknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-07\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.87,\n                    \"Duration_years\": 3.41,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Laadunvalvontateknikko\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-06-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-12-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 46.85,\n                    \"Duration_years\": 3.9,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 18.75,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-08-19\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Transfer to a new role\",\n                    \"Duration_months\": 22.37,\n                    \"Duration_years\": 1.86,\n                    \"Valid_until\": \"2019-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-02-19\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.07,\n                    \"Duration_years\": 4.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-21\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.46,\n                    \"Duration_years\": 2.12,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.84,\n                    \"Duration_years\": 2.24,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT Manager\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 52.07,\n                    \"Duration_years\": 4.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-10-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT Consultant\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 2.79,\n                    \"Duration_years\": 0.23,\n                    \"Valid_until\": \"2020-01-01\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"IT Consultant\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-04-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-10-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2019-10-09\",\n                    \"Reason_for_fixed-term_employment\": \"Project-based work\",\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 18.04,\n                    \"Duration_years\": 1.5,\n                    \"Valid_until\": \"2019-10-09\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-03-21\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-09-21\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25.46,\n                    \"Duration_years\": 2.12,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Montagechef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-03-09\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-09-09\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 49.84,\n                    \"Duration_years\": 4.15,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-07-22\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-01-22\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 57.43,\n                    \"Duration_years\": 4.79,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-31\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-07-31\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.07,\n                    \"Duration_years\": 2.26,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-02-07\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-08-07\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 26.84,\n                    \"Duration_years\": 2.24,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Säljansvarig\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 67.09,\n                    \"Duration_years\": 5.59,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-03-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 30.92,\n                    \"Duration_years\": 2.58,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Lagerchef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-09-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 37.09,\n                    \"Duration_years\": 3.09,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-17\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-17\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.53,\n                    \"Duration_years\": 2.29,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-04\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-04\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 25,\n                    \"Duration_years\": 2.08,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionschef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-10-15\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-04-15\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 66.63,\n                    \"Duration_years\": 5.55,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-08-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-02-26\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 56.28,\n                    \"Duration_years\": 4.69,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-08-26\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-02-26\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 56.28,\n                    \"Duration_years\": 4.69,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Materials Engineer\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.18,\n                    \"Duration_years\": 3.35,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Produktionsarbetare\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-11-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2020-05-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 53.75,\n                    \"Duration_years\": 4.48,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-11\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-11\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": \"2023-07-31\",\n                    \"Reason_for_employment_end\": \"Own request\",\n                    \"Additional_information\": null,\n                    \"Duration_months\": 15.67,\n                    \"Duration_years\": 1.31,\n                    \"Valid_until\": \"2023-07-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-05-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Fixed-term\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2021-05-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2021-06-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": \"2021-09-30\",\n                    \"Reason_for_fixed-term_employment\": \"Temporary replacement\",\n                    \"Last_day_of_employment\": \"2021-09-30\",\n                    \"Reason_for_employment_end\": \"Temporary employment\",\n                    \"Additional_information\": \"Seasonal Worker for Summer Season 2021\",\n                    \"Duration_months\": 4.96,\n                    \"Duration_years\": 0.41,\n                    \"Valid_until\": \"2021-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-17\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-17\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 27.53,\n                    \"Duration_years\": 2.29,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tutkimusinsinööri\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 64.79,\n                    \"Duration_years\": 5.4,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotesuunnittelija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-02-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-08-18\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 62.49,\n                    \"Duration_years\": 5.21,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Markkinointijohtaja\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-06-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2018-12-18\",\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 70.54,\n                    \"Duration_years\": 5.88,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Coordinator\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 44.78,\n                    \"Duration_years\": 3.73,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-08-10\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"HR Support\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-08-10\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-02-10\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.05,\n                    \"Duration_years\": 2,\n                    \"Valid_until\": \"2020-08-10\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Production Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-04-18\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2022-10-18\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 24.54,\n                    \"Duration_years\": 2.05,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotesuunnittelija\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2019-04-08\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 37.5,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-10-08\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 60.88,\n                    \"Duration_years\": 5.07,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Facility Maintenance Technician\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2020-12-14\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2021-06-14\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 40.64,\n                    \"Duration_years\": 3.39,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2022-07-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": \"Change in working time\",\n                    \"Duration_months\": 23.92,\n                    \"Duration_years\": 1.99,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2024-01-01\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Warehouse Worker\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.07,\n                    \"Duration_years\": 0.34,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Teamchef\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2018-12-03\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": \"2019-06-03\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 65.02,\n                    \"Duration_years\": 5.42,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Manager, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 100,\n                    \"Actual_working_hours_h/wk\": 40,\n                    \"FTE\": 1,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2024-08-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-09-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 70,\n                    \"Actual_working_hours_h/wk\": 28,\n                    \"FTE\": 0.7,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Manager, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": null,\n                    \"Actual_working_hours_h/wk\": 0,\n                    \"FTE\": 0,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 60,\n                    \"Actual_working_hours_h/wk\": 24,\n                    \"FTE\": 0.6,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"Test_user\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Manager, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Monthly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Full-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": null,\n                    \"Actual_working_hours_h/wk\": 0,\n                    \"FTE\": 0,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"Higher officials\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 0.1,\n                    \"Duration_years\": 0.01,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        }\n    ]\n}"},{"id":"46922f07-3743-4059-b4f4-b3336f60df95","name":"Combining filters (Payment Group and validity date)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericEmployment?$expand=Employment_changes($filter=Payment_group eq 'Hourly' and Valid_until eq null)","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericEmployment"],"query":[{"key":"$expand","value":"Employment_changes($filter=Payment_group eq 'Hourly' and Valid_until eq null)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 09:35:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericEmployment\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"Original_hire_date\": \"2022-02-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"Original_hire_date\": \"2024-05-13\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"Original_hire_date\": \"2020-12-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"Original_hire_date\": \"2024-04-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"Original_hire_date\": \"2020-10-05\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"Original_hire_date\": \"2022-08-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"Original_hire_date\": \"2022-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"Original_hire_date\": \"2020-08-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"Original_hire_date\": \"2020-01-06\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"Original_hire_date\": \"2019-01-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"Original_hire_date\": \"2022-03-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"Original_hire_date\": \"2018-02-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"Original_hire_date\": \"2022-04-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"Original_hire_date\": \"2018-07-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"Original_hire_date\": \"2020-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"Original_hire_date\": \"2019-10-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"Original_hire_date\": \"2018-01-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"Original_hire_date\": \"2019-06-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"Original_hire_date\": \"2020-11-23\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-31\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-31\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 31.21,\n                    \"Duration_years\": 2.6,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"139\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"Original_hire_date\": \"2024-06-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"Original_hire_date\": \"2017-09-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"Original_hire_date\": \"2018-05-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"Original_hire_date\": \"2022-03-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"Original_hire_date\": \"2022-03-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"Original_hire_date\": \"2022-02-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"Original_hire_date\": \"2020-02-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Varastotyöntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-03\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 18.75,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2022-07-03\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 32.13,\n                    \"Duration_years\": 2.68,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"148\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"Original_hire_date\": \"2020-09-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"Original_hire_date\": \"2019-12-16\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"Original_hire_date\": \"2020-07-20\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"Original_hire_date\": \"2020-12-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"Original_hire_date\": \"2020-06-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2020-12-28\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 18.75,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2021-06-28\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 44.32,\n                    \"Duration_years\": 3.69,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"152\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"Original_hire_date\": \"2018-02-19\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"Original_hire_date\": \"2018-04-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"Original_hire_date\": \"2022-03-21\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"Original_hire_date\": \"2020-03-09\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"Original_hire_date\": \"2019-07-22\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"Original_hire_date\": \"2022-01-31\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"Original_hire_date\": \"2022-02-07\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"Original_hire_date\": \"2018-10-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"Original_hire_date\": \"2018-09-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Job_title_Connection\": null,\n                    \"Job_title_Text\": \"Tuotannon työntekijä\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2022-01-17\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 37.5,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 30,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2022-07-17\",\n                    \"Employee_group\": \"Blue collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 31.67,\n                    \"Duration_years\": 2.64,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"162\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"Original_hire_date\": \"2022-04-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"Original_hire_date\": \"2018-10-15\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"Original_hire_date\": \"2019-08-26\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"Original_hire_date\": \"2020-12-28\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"Original_hire_date\": \"2019-11-11\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"Original_hire_date\": \"2021-05-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"Original_hire_date\": \"2022-01-17\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"Original_hire_date\": \"2018-12-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"Original_hire_date\": \"2019-02-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"Original_hire_date\": \"2018-06-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"Original_hire_date\": \"2018-08-10\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"Original_hire_date\": \"2022-04-18\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"Original_hire_date\": \"2019-04-08\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"Original_hire_date\": \"2020-12-14\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"Original_hire_date\": \"2022-01-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"Original_hire_date\": \"2018-12-03\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": \"2024-08-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.24,\n                    \"Duration_years\": 0.35,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"180\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": \"2024-09-01\",\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.24,\n                    \"Duration_years\": 0.35,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"181\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 70,\n                    \"Actual_working_hours_h/wk\": 28,\n                    \"FTE\": 0.7,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.24,\n                    \"Duration_years\": 0.35,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"182\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 50,\n                    \"Actual_working_hours_h/wk\": 20,\n                    \"FTE\": 0.5,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.24,\n                    \"Duration_years\": 0.35,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"183\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 80,\n                    \"Actual_working_hours_h/wk\": 32,\n                    \"FTE\": 0.8,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.24,\n                    \"Duration_years\": 0.35,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"185\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Employment_changes\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Job_title_Connection\": \"Research Scientist\",\n                    \"Job_title_Text\": \"Employee, API Testing\",\n                    \"Type_of_contract\": \"Permanent\",\n                    \"Payment_group\": \"Hourly\",\n                    \"First_day_of_employment\": \"2024-05-01\",\n                    \"Type_of_working_hours\": \"Part-time\",\n                    \"Full-time_working_hours_h/wk\": 40,\n                    \"Working_time_rate_%\": 60,\n                    \"Actual_working_hours_h/wk\": 24,\n                    \"FTE\": 0.6,\n                    \"Last_day_of_probation_period\": null,\n                    \"Employee_group\": \"White collar\",\n                    \"Collective_agreement\": \"Not applicable\",\n                    \"Last_day_of_fixed-term_employment\": null,\n                    \"Reason_for_fixed-term_employment\": null,\n                    \"Last_day_of_employment\": null,\n                    \"Reason_for_employment_end\": null,\n                    \"Additional_information\": null,\n                    \"Duration_months\": 4.24,\n                    \"Duration_years\": 0.35,\n                    \"Valid_until\": null,\n                    \"Row_ID\": \"186\",\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"Original_hire_date\": \"2024-05-01\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"Original_hire_date\": \"2024-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"Original_hire_date\": \"2024-05-04\",\n            \"TESTUSER\": false,\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"Original_hire_date\": null,\n            \"TESTUSER\": false,\n            \"modified\": null,\n            \"Employment_changes\": []\n        }\n    ]\n}"}],"_postman_id":"5a48b25f-694a-4995-9926-f28db8145f22"},{"name":"Organisation","id":"ecd4dfdf-22f4-4616-ae6f-633b598af56b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/SYSTEMNAMEOrganisation","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","SYSTEMNAMEOrganisation"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"c33e00cd-6fa8-4cfe-8183-35327b69cc07","name":"Get full organisation history","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericOrganisation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 16:03:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericOrganisation\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Advertising\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Quality Control\",\n                    \"Team\": \"Inspection\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Prototyping\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Prototyping\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-08-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-09-22\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Customer Support\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Customer Support\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Market Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Production Planning\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Prototyping\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Quality Control\",\n                    \"Team\": \"Inspection\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Market Research\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2023-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Sales Operations\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Advertising\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Production Planning\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Customer Support\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Sales Operations\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Market Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Quality Control\",\n                    \"Team\": \"Inspection\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Sales Operations\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Production Planning\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2023-07-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-05-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2021-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Advertising\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        }\n    ]\n}"},{"id":"c83de9ed-5e7c-4c86-a80d-75182d6dcc7f","name":"Get specific organisation entry","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericOrganisation?$expand=Organisation($filter=Department eq 'Maintenance')","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericOrganisation"],"query":[{"key":"$expand","value":"Organisation($filter=Department eq 'Maintenance')"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 09:49:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericOrganisation\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        }\n    ]\n}"},{"id":"d7120372-5c42-4fd2-b1c7-5ac5e9785157","name":"Get approved organisation entries","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericOrganisation?$expand=Organisation($filter=Approval eq 5)","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericOrganisation"],"query":[{"key":"$expand","value":"Organisation($filter=Approval eq 5)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 16:05:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericOrganisation\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Advertising\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Quality Control\",\n                    \"Team\": \"Inspection\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Prototyping\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Prototyping\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-08-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-09-22\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Customer Support\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Customer Support\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Market Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Production Planning\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Prototyping\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Quality Control\",\n                    \"Team\": \"Inspection\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Market Research\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2023-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Sales Operations\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Advertising\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Production Planning\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Customer Support\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Sales Operations\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Market Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Quality Control\",\n                    \"Team\": \"Inspection\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Assembly\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Sales\",\n                    \"Team\": \"Sales Operations\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Production\",\n                    \"Department\": \"Production\",\n                    \"Team\": \"Production Planning\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Materials Science\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2023-07-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-05-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": \"2021-09-30\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Sales and Marketing\",\n                    \"Department\": \"Marketing\",\n                    \"Team\": \"Advertising\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Development\",\n                    \"Team\": \"Design\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Country\": \"United Kingdom\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"London\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Finland\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Helsinki\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Research and Development\",\n                    \"Department\": \"Research\",\n                    \"Team\": \"Product Research\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        }\n    ]\n}"},{"id":"a2434876-cc14-44c2-8ba7-f020675784de","name":"Combining filters (Country and Business Unit)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericOrganisation?$expand=Organisation($filter=Country eq 'Sweden' and Business_unit eq 'Operations')","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericOrganisation"],"query":[{"key":"$expand","value":"Organisation($filter=Country eq 'Sweden' and Business_unit eq 'Operations')"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 09:53:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericOrganisation\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Mechanical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-08-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-09-22\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Facility Management\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Operations, Finance & IT\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Human Resources\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Administration\",\n                    \"Team\": \"Purchasing\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Warehouse\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Manufacturing\",\n                    \"Team\": \"Manufacturing Line\",\n                    \"Location\": \"Malmö\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Organisation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Country\": \"Sweden\",\n                    \"Company\": \"Sympa Demo\",\n                    \"Business_unit\": \"Operations\",\n                    \"Department\": \"Maintenance\",\n                    \"Team\": \"Electrical maintenance\",\n                    \"Location\": \"Göteborg\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Organisation\": []\n        }\n    ]\n}"}],"_postman_id":"ecd4dfdf-22f4-4616-ae6f-633b598af56b"},{"name":"CostCentre","id":"1dac3a31-5df3-484e-b059-11dbd22f92f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericCostCentre","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericCostCentre"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"18588736-89b3-4da7-8e3a-cd2f0fbb8763","name":"Get full cost centre allocation history","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericCostCentre"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 May 2024 13:08:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericCostCentre\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-06T13:05:26Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Cost_centre\": \"Electrical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 90,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Cost_centre\": \"Inspection\",\n                    \"Primary_cost_centre\": false,\n                    \"Allocation_%\": 10,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Cost_centre\": \"Advertising\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Cost_centre\": \"Inspection\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Cost_centre\": \"Prototyping\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Cost_centre\": \"Electrical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Cost_centre\": \"Prototyping\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Cost_centre\": \"Customer Support\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Cost_centre\": \"Market Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Cost_centre\": \"Production Planning\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Cost_centre\": \"Prototyping\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Cost_centre\": \"Inspection\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Cost_centre\": \"Market Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Cost_centre\": \"Sales Operations\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Cost_centre\": \"Advertising\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Cost_centre\": \"Production Planning\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Cost_centre\": \"Customer Support\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Cost_centre\": \"Sales Operations\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Cost_centre\": \"Market Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Cost_centre\": \"Inspection\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Cost_centre\": \"Sales Operations\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Cost_centre\": \"Production Planning\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Cost_centre\": \"Advertising\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Cost_centre\": \"Electrical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        }\n    ]\n}"},{"id":"5ddec469-f08c-4ed0-8b85-43ccadf00c8e","name":"Get primary cost centre allocations only","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericCostCentre?$expand=Cost_centre($filter=Primary_cost_centre eq true)","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericCostCentre"],"query":[{"key":"$expand","value":"Cost_centre($filter=Primary_cost_centre eq true)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 May 2024 13:08:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericCostCentre\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-06T13:05:26Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Cost_centre\": \"Electrical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 90,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Cost_centre\": \"Advertising\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Cost_centre\": \"Inspection\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Cost_centre\": \"Prototyping\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Cost_centre\": \"Electrical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Cost_centre\": \"Prototyping\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Cost_centre\": \"Customer Support\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Cost_centre\": \"Market Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Cost_centre\": \"Production Planning\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Cost_centre\": \"Prototyping\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Cost_centre\": \"Inspection\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Cost_centre\": \"Market Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Cost_centre\": \"Sales Operations\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Cost_centre\": \"Advertising\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Cost_centre\": \"Production Planning\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Cost_centre\": \"Customer Support\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Cost_centre\": \"Sales Operations\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Cost_centre\": \"Purchasing\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Cost_centre\": \"Market Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Cost_centre\": \"Facility Management\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Cost_centre\": \"Inspection\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Cost_centre\": \"Operations, Finance & IT\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Cost_centre\": \"Assembly\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Cost_centre\": \"Sales Operations\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Cost_centre\": \"Production Planning\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Cost_centre\": \"Materials Science\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Cost_centre\": \"Advertising\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Cost_centre\": \"Human Resources\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Cost_centre\": \"Manufacturing Line\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Cost_centre\": \"Design\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Cost_centre\": \"Mechanical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Cost_centre\": \"Warehouse\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Cost_centre\": \"Electrical maintenance\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Cost_centre\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Cost_centre\": \"Product Research\",\n                    \"Primary_cost_centre\": true,\n                    \"Allocation_%\": 100,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"1dac3a31-5df3-484e-b059-11dbd22f92f0"},{"name":"Compensation","id":"8111f45e-bb7d-45ba-8cf1-7704e5604e91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericCompensation","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericCompensation"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"ada10954-6e7b-4009-a9e6-637d7d1244d9","name":"Get full compensation history","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericCompensation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 May 2024 13:09:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericCompensation\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-06T13:05:26Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3250,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3285.75,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3354.75,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3422.95,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3508.52,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3683.95,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 21060,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 21692,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2021-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 30079.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-01-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28922,\n                    \"Change_reason\": \"Change in working time\",\n                    \"Additional_information\": \"Går från att arbeta 75% till 100%.\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2750,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2806.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2876.25,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3020.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2800,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3100,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3163.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3242.18,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3404.29,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 50220,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 51575,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 52606,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 53132,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 54141,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 56848.05,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Other monthly compensation\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2790,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2846.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2918.07,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3063.97,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 65500,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 69102.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28360,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28898,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 30342.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28000,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28360,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28898,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 30342.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 33240,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 34237.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 35606.69,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 37921.12,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2019.25,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2120.21,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 51480,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 53024.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 55145.38,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 57626.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2011.37,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2052.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2104.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23868,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24106,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24564,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25792.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 33240,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 33572,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 34209,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 35919.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2790,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2846.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2918.07,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3078.56,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 38760,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 39806,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 40602,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 41008,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 41787,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 43876.35,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 53640,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 54712.8,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 56244.76,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 57932.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 60249.38,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 63563.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 64260,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 65995,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 67314,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 67987,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 69278,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 72741.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 51480,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 51994,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 52981,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 55630.05,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 46920,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 47858,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 48336,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 49254,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 51716.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23868,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24106,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24564,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25915.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25000,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28922.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 30079.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 51480,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 53024.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 55145.38,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 58729.83,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 38760,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 39806,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 40602,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 41008,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 41787,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 43876.35,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28613,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 30043.65,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28613,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 30043.65,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 52920,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 54348,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 55434,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 55988,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 57051,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 59903.55,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 11.24,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2449.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2510.33,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2635.85,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28922.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 30079.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-06-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28922.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 30079.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31733.66,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24102,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 25066.08,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26194.05,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 34740,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 35782.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 37213.49,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2022-11-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-12-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 39500,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"Ny roll\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 42067.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2024-04-04\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 48240,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 49542,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 50532,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 51037,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 52006,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 54606.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 51480,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 52869,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 53926,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 54465,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 55499,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 58551.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6840,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6915.24,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7060.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7202.77,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7382.84,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6840,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6915.24,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7060.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7202.77,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7382.84,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23868,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24106,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24564,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2078.35,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2011.37,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2052.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2104.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 8120,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 8209.32,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 8381.72,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 8550.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 8764.21,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 9202.42,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24055.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24776.86,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 25767.93,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26927.49,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 38760,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 39535.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 40642.19,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 41861.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 43535.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45930.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3150,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3214.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3294.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 11.24,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3120,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3154.32,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3220.56,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3286.07,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3368.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3536.63,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23868,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24106,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24564,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25792.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28360,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28898,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 30342.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3650,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3726.65,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3802.28,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3897.34,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4092.21,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23500,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24205,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 25173.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28922.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 30079.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 32034.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2450,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2476.95,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2528.97,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2580.65,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2645.17,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2777.43,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 51480,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 52921.44,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 54509.08,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 56689.44,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 59240.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 34740,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 35400,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 37170,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 79000,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 82879,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 85590,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 88290,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 93705,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 97921.73,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24687,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-07\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7100,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7178.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7328.84,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7476.52,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7663.43,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 8084.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-11\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2426.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2477.35,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2528,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2591.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2720.76,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 53640,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 55088,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 56189,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 56750,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 57828,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 61008.54,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 29500,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-04-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-05-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 33572,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"New Role\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 34209,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 35919.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28922.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 30079.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-10-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2011.37,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2052.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2104.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 118800,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 122007,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 124447,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 125691,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 128079,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 134482.95,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24055.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24776.86,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 25767.93,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 27442.85,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2750,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2806.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2876.25,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3020.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6840,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6915.24,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7060.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7202.77,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7382.84,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2011.37,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2052.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2104.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2219.74,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2790,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2846.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2918.07,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3063.97,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28360,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28898,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 38760,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 39806,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 40602,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 41008,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 41787,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 43876.35,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 48500,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 57283.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 58887.13,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 60653.74,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 63079.89,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-06-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-07-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 55650,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"Ny roll från 2023-07-01. Pågående lönerevision inte inräknad.\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 10.59,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3150,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3214.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3294.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3459.17,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 46920,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 48233.76,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 49680.77,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 51668,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 53993.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24055.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24776.86,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 25767.93,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26927.49,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 64260,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"New role\",\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 65545.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 69900,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 74495,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 79400,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2017-09-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 61540,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2018-02-25\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 82973,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6840,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6915.24,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7060.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7202.77,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7382.84,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 50220,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 51224.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 52658.68,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 54238.44,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 56407.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 58946.34,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2011.37,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2052.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2104.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 47500,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 50500,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 52230,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 54220,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-06-25\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-06-26\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 66000,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"Ny roll, pågående lönerevision ej inkluderad\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4100,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4145.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4232.15,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4317.89,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4425.84,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4647.13,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 50102,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 51104.04,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 52534.95,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 54111,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 56275.44,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 59933.34,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-14\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-28\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-02-14\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24687,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23868,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24106,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24564,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25792.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23634,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24083,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25287.15,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 56160,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 57676,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 58829,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 59417,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 60545,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 63572.25,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 10.59,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28922.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 30079.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-12-16\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23868,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24106,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24564,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25915.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2940,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2999.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3074.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3244.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2790,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2846.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2918.07,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3063.97,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2010,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2051.3,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2102.58,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2207.71,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 11.24,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.34,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 45630,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 46570,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-01-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 58800,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"New Role\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 59417,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 60545,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 63874.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 56160,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 57676,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 58829,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 59417,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 60545,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 63572.25,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-03-21\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 33240,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 34237.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 35606.69,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 37565.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-07-22\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2011.37,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2052.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2104.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-31\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-02-07\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2019.25,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2130.31,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 56160,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 57283.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 58887.13,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 60653.74,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 63079.89,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 66549.28,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 38760,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 39535.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 40642.19,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 41861.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 43535.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45495.04,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 11.24,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-04\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 48240,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 49204.8,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 50582.53,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 52100.01,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 54184.01,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 57164.13,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2011.37,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2052.7,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2104.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-08-26\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24055.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24776.86,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 25767.93,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 27442.85,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 51480,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 52458,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 55080.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-11-11\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24055.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24776.86,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 25767.93,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26927.49,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-17\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 11.24,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3320,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3356.52,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3427.01,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3496.65,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3584.07,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3763.27,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3437.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3509.59,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3580.88,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3670.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3853.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6840,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-02-27\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-02-28\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 6915.24,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2019\",\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7060.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7202.77,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7382.84,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7788.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28360,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28898,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 30487.39,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-04-18\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 24570,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2020-02-29\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3471.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2020\",\n                    \"Valid_until\": \"2021-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3541.93,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleis- ja henkilökohtainen korotus 2021\",\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3630.48,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Yleiskorotus 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3812,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28080,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-02-28\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-03-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 28613,\n                    \"Change_reason\": \"Personal increase\",\n                    \"Additional_information\": \"Salary Review 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 30043.65,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Salary Review 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2022-01-03\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 11.24,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 38760,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2019-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2019-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 39535.2,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2019 / Löneår 2019\",\n                    \"Valid_until\": \"2020-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 40642.19,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2020 / Löneår 2020\",\n                    \"Valid_until\": \"2021-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2021-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 41861.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2021 / Löneår 2021\",\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 43535.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2022 / Löneår 2022\",\n                    \"Valid_until\": \"2023-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45930.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        }\n    ]\n}"},{"id":"df9746e7-3628-4d80-bdc7-901e8380870f","name":"Get compensation entries for a given date","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericCompensation?$expand=Compensation($filter=Valid_from gt 2023-04-01)","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericCompensation"],"query":[{"key":"$expand","value":"Compensation($filter=Valid_from gt 2023-04-01)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 09:55:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericCompensation\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2800,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Other monthly compensation\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28000,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 125,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 25000,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Annual salary\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 23400,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-07-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 55650,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"Ny roll från 2023-07-01. Pågående lönerevision inte inräknad.\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-06-26\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 66000,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"Ny roll, pågående lönerevision ej inkluderad\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Hourly wage\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 12.5,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        }\n    ]\n}"},{"id":"a26d13b0-63ee-4b8f-a81a-fd46dd56a1eb","name":"Combining filters (Currently valid Monthly Salary))","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.sympahr.net/api/GenericCompensation?$expand=Compensation($filter=Type_of_compensation eq 'Monthly salary' and Valid_until eq null)","protocol":"https","host":["api","sympahr","net"],"path":["api","GenericCompensation"],"query":[{"key":"$expand","value":"Compensation($filter=Type_of_compensation eq 'Monthly salary' and Valid_until eq null)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 09:58:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericCompensation\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3683.95,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3020.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2800,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3404.29,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3063.97,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 28000,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 37921.12,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2120.21,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 57626.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3078.56,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 63563.1,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 58729.83,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2635.85,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31733.66,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26194.05,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 42067.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2078.35,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 9202.42,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26927.49,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45930.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3536.63,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4092.21,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 32034.45,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2777.43,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 59240.46,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 97921.73,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24687,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 8084.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2720.76,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 27442.85,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3020.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2219.74,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3063.97,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-07-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 55650,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"Ny roll från 2023-07-01. Pågående lönerevision inte inräknad.\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3459.17,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1970,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 53993.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26927.49,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 82973,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7751.98,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 58946.34,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-06-26\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 66000,\n                    \"Change_reason\": \"Change in job description\",\n                    \"Additional_information\": \"Ny roll, pågående lönerevision ej inkluderad\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 4647.13,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 59933.34,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24687,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 31432.87,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3244.02,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3063.97,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2207.71,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2068.5,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 37565.06,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 24453,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2130.31,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 66549.28,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45495.04,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 57164.13,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 2209.22,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 27442.85,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 26927.49,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3763.27,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3853.92,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 7788.9,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3812,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Palkankorotuskierros 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2023-04-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45930.4,\n                    \"Change_reason\": \"Statutory increase\",\n                    \"Additional_information\": \"Lönerevision 2023\",\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_compensation\": \"Monthly salary\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 3200,\n                    \"Change_reason\": \"New hire\",\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"APPROVAL\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"modified\": null,\n            \"TESTUSER\": false,\n            \"Compensation\": []\n        }\n    ]\n}"}],"_postman_id":"8111f45e-bb7d-45ba-8cf1-7704e5604e91"},{"name":"Benefits","id":"c10b9bdd-8e21-4e8f-8285-22afbc0a8b3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericBenefits","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericBenefits"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"3b6aa315-c64f-4c6f-adcc-92e43cc1f3cc","name":"Get all benefits","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericBenefits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 May 2024 13:14:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericBenefits\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-06T13:05:26Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-02-28\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 480,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-05-13\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 3450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-12-21\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-04-16\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-12-03\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 480,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-06-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 3450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-10-05\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 480,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2025-01-01\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2022-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 250,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 625,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 755,\n                    \"Additional_information\": \"Työsuhdeauton vaihto\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-05-07\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 625,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 755,\n                    \"Additional_information\": \"Työsuhdeauton vaihto\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2019-06-03\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2024-08-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Type_of_benefit\": \"Company car (unlimited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1110,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-04-30\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-05-01\",\n                    \"Type_of_benefit\": \"Company car (unlimited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1475,\n                    \"Additional_information\": \"Työsuhdeauton vaihto\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-05-04\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-05-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2019-01-14\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-01-06\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 3450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-10-21\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-02-26\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 625,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 755,\n                    \"Additional_information\": \"Työsuhdeauton vaihto\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-11-11\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-07-16\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2021-05-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-01-08\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 480,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-09-21\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 625,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 755,\n                    \"Additional_information\": \"Työsuhdeauton vaihto\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-11-23\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-09-03\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2022-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 400,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-03-09\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 3450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (unlimited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6900,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2022-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 250,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-10-15\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2022-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 3450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (unlimited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6900,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-12-28\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-02-03\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-10-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 3450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 2450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2023-12-31\",\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-07-20\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-12-07\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-06-08\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-02-19\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2020-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 480,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-04-09\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 480,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (unlimited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6900,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 3450,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-12-28\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Internet allowance\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 350,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-12-10\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2019-02-18\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2018-06-18\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 625,\n                    \"Additional_information\": null,\n                    \"Valid_until\": \"2022-03-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2022-04-01\",\n                    \"Type_of_benefit\": \"Company car (limited use)\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 755,\n                    \"Additional_information\": \"Työsuhdeauton vaihto\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-08-10\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2019-04-08\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2020-12-14\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 300,\n                    \"Additional_information\": \"Annual amount\",\n                    \"Valid_until\": \"2022-12-31\",\n                    \"Approval\": 5\n                },\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 360,\n                    \"Additional_information\": \"Revised Benefit Value\",\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2023-01-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 500,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Benefits\": [\n                {\n                    \"Valid_from\": \"2024-05-01\",\n                    \"Type_of_benefit\": \"Mobile phone subscription\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 20,\n                    \"Additional_information\": null,\n                    \"Valid_until\": null,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Benefits\": []\n        }\n    ]\n}"}],"_postman_id":"c10b9bdd-8e21-4e8f-8285-22afbc0a8b3a"},{"name":"OneOffPayments","id":"9400a1af-81c4-422c-a1f3-7082004bbf54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericOneOffPayments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericOneOffPayments"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"cb55d76c-ffd0-46c7-a605-06b656ac51ca","name":"Get all one-off payments","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericOneOffPayments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 May 2024 13:18:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericOneOffPayments\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-06T13:05:26Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-04-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-04-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2020-10-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5250,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-12-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-04-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-04-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-03-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 950,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 950,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1050,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 70000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2020-10-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5250,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 70000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-12-24\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 950,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-04-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 950,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 70000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2020-10-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 7500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 70000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 70000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 100000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 70000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-06-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-12-24\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-04-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2020-10-25\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5250,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-07-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-05-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-12-24\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 2000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-03-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-12-24\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-12-25\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 45000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-10-25\",\n                    \"Type_of_payment\": \"Balance hours payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 6500,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 900,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 1000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 950,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2021-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 750,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"EUR\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 1200,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2022-02-28\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 800,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"GBP\",\n                    \"Amount\": 400,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": [\n                {\n                    \"Date\": \"2023-03-18\",\n                    \"Type_of_payment\": \"One-off payment\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 10000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-01-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 5000,\n                    \"Approval\": 5\n                },\n                {\n                    \"Date\": \"2023-12-01\",\n                    \"Type_of_payment\": \"Performance bonus\",\n                    \"Currency\": \"SEK\",\n                    \"Amount\": 4000,\n                    \"Approval\": 5\n                }\n            ]\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"One-off_payments\": []\n        }\n    ]\n}"}],"_postman_id":"9400a1af-81c4-422c-a1f3-7082004bbf54"},{"name":"BankAccount","id":"e2140146-4d20-4c22-b222-c4a2f86f4f60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericBankAccount","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericBankAccount"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"81c45f3a-8957-4396-b7df-baa2dc8c113a","name":"Get bank account details","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericBankAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 May 2024 13:24:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericBankAccount\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-06T13:05:26Z\",\n            \"IBAN_Account_holder\": \"Aaron Topi Reijo Ruotsalainen\",\n            \"IBAN\": \"FI07 4033 0689 0006 54\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3016\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Aimo Tapio Laine\",\n            \"IBAN\": \"FI82 4964 3266 0009 91\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": \"Aino Tuulia Mäentaus\",\n            \"IBAN\": \"FI88 5868 4491 7374 39\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Aki Juuso Eino Harmaajärvi\",\n            \"IBAN\": \"FI22 3932 3020 0031 18\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Akida Achebe\",\n            \"UK_Sort_code\": \"10-00-01\",\n            \"UK_Account_number\": \"28136454\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Akilina Krupin\",\n            \"UK_Sort_code\": \"20-00-61\",\n            \"UK_Account_number\": \"18014004\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Akseli Robert Karppinen\",\n            \"IBAN\": \"FI26 3871 5190 0008 92\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3018\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Alexander Riley Ellis\",\n            \"UK_Sort_code\": \"92-11-24\",\n            \"UK_Account_number\": \"98502958\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Allsopp Cyril Allsopp\",\n            \"UK_Sort_code\": \"90-21-30\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Anabelle Suki Simon\",\n            \"UK_Sort_code\": \"10-00-08\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3023\",\n            \"SE_DK_Bank_account_number\": \"8972394\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Anna Katariina Heta Aaltonen\",\n            \"IBAN\": \"FI83 3366 7480 0031 33\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3017\",\n            \"SE_DK_Bank_account_number\": \"8110696\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3026\",\n            \"SE_DK_Bank_account_number\": \"8972394\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Taika Camilla Tuominen\",\n            \"IBAN\": \"FI49 2156 5040 0048 52\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Arn Hogarth\",\n            \"UK_Sort_code\": \"10-00-05\",\n            \"UK_Account_number\": \"23075229\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": null,\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3020\",\n            \"SE_DK_Bank_account_number\": \"7497300\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Augusta Anjanette Woodham\",\n            \"UK_Sort_code\": \"80-05-58\",\n            \"UK_Account_number\": \"19701079\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Aukusti Toivo Seppä\",\n            \"IBAN\": \"FI85 8297 8250 0049 16\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Aulikki Koskinen\",\n            \"IBAN\": \"FI28 4721 4964 0005 19\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": \"Aurora Pajari\",\n            \"IBAN\": \"FI55 4796 1082 0007 77\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Austyn Britton\",\n            \"UK_Sort_code\": \"80-05-52\",\n            \"UK_Account_number\": \"29823529\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3015\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Benjamin Abney\",\n            \"UK_Sort_code\": \"80-05-51\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Bridger Bone\",\n            \"UK_Sort_code\": \"18-50-09\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3034\",\n            \"SE_DK_Bank_account_number\": \"2879245\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Chandan Chaudhri\",\n            \"UK_Sort_code\": \"10-00-04\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Chandrasekhar Nagarkar\",\n            \"UK_Sort_code\": \"20-00-56\",\n            \"UK_Account_number\": \"28136455\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3026\",\n            \"SE_DK_Bank_account_number\": \"8972394\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3026\",\n            \"SE_DK_Bank_account_number\": \"7248998\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Conway Bancroft\",\n            \"UK_Sort_code\": \"18-50-10\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Coretta Garrod\",\n            \"UK_Sort_code\": \"20-00-60\",\n            \"UK_Account_number\": \"38258904\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Cortney Ewart\",\n            \"UK_Sort_code\": \"20-00-54\",\n            \"UK_Account_number\": \"26449379\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Daria Ślusarczyk\",\n            \"UK_Sort_code\": \"18-50-08\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Dash Walker\",\n            \"UK_Sort_code\": \"80-05-56\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"SEB\",\n            \"SE_DK_Clearing_number\": \"4546\",\n            \"SE_DK_Bank_account_number\": \"5464646\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Eelis Eetu Väinö Mustonen\",\n            \"IBAN\": \"FI25 4038 3646 0000 77\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3028\",\n            \"SE_DK_Bank_account_number\": \"2879245\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": null,\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3020\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3014\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": null,\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3012\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3025\",\n            \"SE_DK_Bank_account_number\": \"2879245\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3019\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": null,\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3021\",\n            \"SE_DK_Bank_account_number\": \"5386410\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Geraldine Sharyl Woods\",\n            \"UK_Sort_code\": \"90-21-34\",\n            \"UK_Account_number\": \"21388154\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Hallam Timothy Kowalczyk\",\n            \"UK_Sort_code\": \"20-00-55\",\n            \"UK_Account_number\": \"32354141\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": null,\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Hannele Livia Laitinen\",\n            \"IBAN\": \"FI70 6673 4770 0081 96\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Helvi Erika Aalto\",\n            \"IBAN\": \"FI05 1225 1270 0069 71\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Hilla Aina Matleena Lahti\",\n            \"IBAN\": \"FI58 3821 0270 0001 94\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Hira Vemulakonda\",\n            \"UK_Sort_code\": \"18-50-12\",\n            \"UK_Account_number\": \"24762304\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Iiris Nurmi\",\n            \"IBAN\": \"FI51 4775 1585 0009 07\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Iivo Herman Vilhelm Saarinen\",\n            \"IBAN\": \"FI22 3173 0470 0057 57\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3030\",\n            \"SE_DK_Bank_account_number\": \"8749834\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Inkeri Esteri Järvinen\",\n            \"IBAN\": \"FI43 4965 6276 0008 84\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3017\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3013\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Jaana Birgitta Kaarina Harmaajärvi\",\n            \"IBAN\": \"FI77 4102 5497 0000 57\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Jafari Falana\",\n            \"UK_Sort_code\": \"10-00-06\",\n            \"UK_Account_number\": \"34884754\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Jami Martikainen\",\n            \"IBAN\": \"FI27 4295 6097 0009 08\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Janika Virtanen\",\n            \"IBAN\": \"FI60 4747 7312 0006 51\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Jayesh Narang\",\n            \"UK_Sort_code\": \"90-21-31\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Jerred Braddock\",\n            \"UK_Sort_code\": \"80-05-53\",\n            \"UK_Account_number\": \"28136454\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Joakim Jesse Tapani Salonen\",\n            \"IBAN\": \"FI95 3837 5190 0085 91\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3024\",\n            \"SE_DK_Bank_account_number\": \"8749834\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Jüri Avdeyev\",\n            \"IBAN\": \"FI06 4956 9827 0008 83\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3031\",\n            \"SE_DK_Bank_account_number\": \"2879245\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3014\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Katheryn Bessie Adkins\",\n            \"UK_Sort_code\": \"90-21-35\",\n            \"UK_Account_number\": \"36571829\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3022\",\n            \"SE_DK_Bank_account_number\": \"2879245\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Khary Okoye\",\n            \"UK_Sort_code\": \"80-05-57\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3029\",\n            \"SE_DK_Bank_account_number\": \"8972394\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Kirsi Ursula Heikkinen\",\n            \"IBAN\": \"FI31 3815 0350 0030 82\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Kobe Iwu\",\n            \"UK_Sort_code\": \"20-00-58\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Kristian Heikkinen\",\n            \"IBAN\": \"FI29 4351 2129 0008 92\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3032\",\n            \"SE_DK_Bank_account_number\": \"8972394\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Kusti Henrikki Hämäläinen\",\n            \"IBAN\": \"FI07 4772 3813 0001 81\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Lamar Blue\",\n            \"UK_Sort_code\": \"20-00-53\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Leanora Sutton Clemens\",\n            \"UK_Sort_code\": \"18-50-15\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Krista Toivonen\",\n            \"IBAN\": \"FI78 3738 6740 0078 85\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Lilia Novikov\",\n            \"UK_Sort_code\": \"18-50-17\",\n            \"UK_Account_number\": \"16326929\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Lilibet Small\",\n            \"UK_Sort_code\": \"10-00-00\",\n            \"UK_Account_number\": \"31510604\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3027\",\n            \"SE_DK_Bank_account_number\": \"8749834\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Luukas Henri Ruoho\",\n            \"IBAN\": \"FI54 4793 1720 0001 09\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Lyyti Pilvi Rautio\",\n            \"IBAN\": \"FI42 4796 2163 0004 39\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Manny Kip Elder\",\n            \"UK_Sort_code\": \"18-50-11\",\n            \"UK_Account_number\": \"33197679\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": null,\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Länsförsäkringar\",\n            \"SE_DK_Clearing_number\": \"3022\",\n            \"SE_DK_Bank_account_number\": \"6535703\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Mariabella Hunt\",\n            \"UK_Sort_code\": \"18-50-16\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Marianna Ella Järvi\",\n            \"IBAN\": \"FI55 4773 1386 0003 89\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Marjatta Taika Ruut Korhonen\",\n            \"IBAN\": \"FI91 2372 1060 0095 98\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Marjory Ravenna Burton\",\n            \"UK_Sort_code\": \"80-05-59\",\n            \"UK_Account_number\": \"37415366\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Marnie Cathy Stevens\",\n            \"UK_Sort_code\": \"20-00-59\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3021\",\n            \"SE_DK_Bank_account_number\": \"8749834\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Matleena Sirpa Aaltonen\",\n            \"IBAN\": \"FI25 4795 6012 0000 79\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Milja Pilvi Sini Rantanen\",\n            \"IBAN\": \"FI94 3734 2520 0008 71\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Milla Takala\",\n            \"IBAN\": \"FI82 1213 9660 0003 18\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": \"Mimosa Seppä\",\n            \"IBAN\": \"FI12 4703 5958 0008 47\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3015\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Mwenye Olanrewaju\",\n            \"UK_Sort_code\": \"90-21-33\",\n            \"UK_Account_number\": \"35728291\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3028\",\n            \"SE_DK_Bank_account_number\": \"2879245\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3020\",\n            \"SE_DK_Bank_account_number\": \"8972394\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Nestori Salminen\",\n            \"IBAN\": \"FI53 4701 2356 0003 64\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3012\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3010\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Päivä Lehtinen\",\n            \"IBAN\": \"FI87 4795 3013 0002 99\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3011\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Patti Cheryl Plaskett\",\n            \"UK_Sort_code\": \"18-50-14\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3018\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3017\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Prateek Chaudhri\",\n            \"UK_Sort_code\": \"80-05-55\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Presley Henryson\",\n            \"UK_Sort_code\": \"10-00-02\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Ralph Abrams\",\n            \"UK_Sort_code\": \"90-21-28\",\n            \"UK_Account_number\": \"31510604\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3019\",\n            \"SE_DK_Bank_account_number\": \"6387300\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Rebekka Taina Kulmala\",\n            \"IBAN\": \"FI94 4058 4363 0007 09\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3015\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3033\",\n            \"SE_DK_Bank_account_number\": \"8749834\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Ridley Rodgers\",\n            \"UK_Sort_code\": \"90-21-32\",\n            \"UK_Account_number\": \"00813796\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Ruut Anu Elina Karppinen\",\n            \"IBAN\": \"FI15 4108 1393 0004 28\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Salli Aira Ada Tähtinen\",\n            \"IBAN\": \"FI46 4972 4663 0004 85\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Sanna Anniina Vieno Ruoko\",\n            \"IBAN\": \"FI27 4102 3138 0003 39\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Sanni Helka Salminen\",\n            \"IBAN\": \"FI49 5213 4923 0000 32\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Shauna Jacqui Benton\",\n            \"UK_Sort_code\": \"90-21-27\",\n            \"UK_Account_number\": \"29823529\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Shevaun Steph Edwardson\",\n            \"UK_Sort_code\": \"10-00-07\",\n            \"UK_Account_number\": \"28136456\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3016\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Svetlana Wrona\",\n            \"UK_Sort_code\": \"20-00-52\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Sylvi Takala\",\n            \"IBAN\": \"FI77 3418 4090 0014 31\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Sparbanken\",\n            \"SE_DK_Clearing_number\": \"3013\",\n            \"SE_DK_Bank_account_number\": \"9834092\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Taavi Jari Joel Karppinen\",\n            \"IBAN\": \"FI85 4034 3084 0003 02\",\n            \"IBAN_BIC_code\": \"NDEAFIHH\",\n            \"IBAN_Bank_name\": \"Nordea\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3026\",\n            \"SE_DK_Bank_account_number\": \"5525602\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Taina Heleena Riina Tuominen\",\n            \"IBAN\": \"FI11 4376 1632 0002 18\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3024\",\n            \"SE_DK_Bank_account_number\": \"8749834\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Danske Bank\",\n            \"SE_DK_Clearing_number\": \"3023\",\n            \"SE_DK_Bank_account_number\": \"8972394\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Terhi Laila Heta Laitinen\",\n            \"IBAN\": \"FI70 4721 2817 0004 05\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Tetty Ansel\",\n            \"UK_Sort_code\": \"10-00-09\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3025\",\n            \"SE_DK_Bank_account_number\": \"2879245\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Tomi Jesse Juhana Laine\",\n            \"IBAN\": \"FI59 4976 5929 0000 17\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3016\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Torin Elihu Mohammad\",\n            \"UK_Sort_code\": \"80-05-54\",\n            \"UK_Account_number\": \"31510604\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Trecia Donalds\",\n            \"UK_Sort_code\": \"90-21-36\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Trystan Sergeant\",\n            \"UK_Sort_code\": \"18-50-13\",\n            \"UK_Account_number\": \"34041216\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Tyko Usko Pekka Salminen\",\n            \"IBAN\": \"FI88 4284 6964 0000 26\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Ukko Toivonen\",\n            \"IBAN\": \"FI06 4746 1323 0005 12\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Vanamo Nurmi\",\n            \"IBAN\": \"FI88 4962 9334 0001 05\",\n            \"IBAN_BIC_code\": \"HANDFIHH\",\n            \"IBAN_Bank_name\": \"Handelsbanken\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Vance Ware\",\n            \"UK_Sort_code\": \"90-21-29\",\n            \"UK_Account_number\": \"28136454\",\n            \"UK_Bank_name\": \"Citibank\"\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Varvara Szymański\",\n            \"UK_Sort_code\": \"80-05-60\",\n            \"UK_Account_number\": \"28136457\",\n            \"UK_Bank_name\": \"HSBC Bank\"\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": \"Vieno Raimo Urho Salonen\",\n            \"IBAN\": \"FI85 4717 0596 0003 52\",\n            \"IBAN_BIC_code\": \"HELSFIHH\",\n            \"IBAN_Bank_name\": \"Aktia\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Vincent Yussuf Vincent\",\n            \"UK_Sort_code\": \"10-00-03\",\n            \"UK_Account_number\": \"75849855\",\n            \"UK_Bank_name\": \"Revolut Ltd\"\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"Test_user\": false,\n            \"Country_setting\": \"United Kingdom\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": \"Will Erickson\",\n            \"UK_Sort_code\": \"20-00-57\",\n            \"UK_Account_number\": \"12098709\",\n            \"UK_Bank_name\": \"Lloyds TSB Bank\"\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3014\",\n            \"SE_DK_Bank_account_number\": \"9830231\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": \"Nordea\",\n            \"SE_DK_Clearing_number\": \"3014\",\n            \"SE_DK_Bank_account_number\": \"9830232\",\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"IBAN_Account_holder\": \"Employee 02 Test Account\",\n            \"IBAN\": \"FI54 0229 9240 8149\",\n            \"IBAN_BIC_code\": \"OKOYFIHH\",\n            \"IBAN_Bank_name\": \"Osuuspankki\",\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Finland\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"Test_user\": false,\n            \"Country_setting\": \"Sweden\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"IBAN_Account_holder\": null,\n            \"IBAN\": null,\n            \"IBAN_BIC_code\": null,\n            \"IBAN_Bank_name\": null,\n            \"NO_Account_number\": null,\n            \"SE_DK_Bank_name\": null,\n            \"SE_DK_Clearing_number\": null,\n            \"SE_DK_Bank_account_number\": null,\n            \"UK_Account_holder\": null,\n            \"UK_Sort_code\": null,\n            \"UK_Account_number\": null,\n            \"UK_Bank_name\": null\n        }\n    ]\n}"}],"_postman_id":"e2140146-4d20-4c22-b222-c4a2f86f4f60"},{"name":"Absences","id":"3a3d22a7-6175-404a-abf5-a8cbfb1b604d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericAbsences","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericAbsences"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"1b5d81a2-4d3b-497f-9e6b-92115295a533","name":"Get full absences history","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericAbsences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 10:02:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericAbsences\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Absences\": []\n        }\n    ]\n}"}],"_postman_id":"3a3d22a7-6175-404a-abf5-a8cbfb1b604d"},{"name":"Holidays","id":"0465a71a-05b8-47db-b84b-e43690cbf4fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericHolidays","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericHolidays"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"cef91e74-d741-4ce1-84d8-84f43df5ea96","name":"Get full holiday history","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericHolidays"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 10:00:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericHolidays\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Holiday_planning\": []\n        }\n    ]\n}"}],"_postman_id":"0465a71a-05b8-47db-b84b-e43690cbf4fe"},{"name":"Appraisal","id":"048c0e76-8804-48c2-a862-545c640546f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericAppraisal","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericAppraisal"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"a93040b5-fa8b-43e2-baeb-1739060a8362","name":"Get full appraisal history","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericAppraisal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 06 Sep 2024 10:03:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericAppraisal\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-08-14T12:56:53Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-08-22T11:25:42Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-28T12:49:42Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-08-22T11:25:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-08-22T11:26:10Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-08-22T11:26:20Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-08-22T11:26:30Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": \"2024-08-22T11:26:45Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-08-22T11:27:00Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-08-22T11:27:14Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-09-05T13:25:14Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-31T09:54:43Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-09-05T13:25:56Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T10:48:03Z\",\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"10132\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"10133\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        },\n        {\n            \"Employee_number\": \"10134\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Appraisal_status\": []\n        }\n    ]\n}"}],"_postman_id":"048c0e76-8804-48c2-a862-545c640546f7"},{"name":"Training Records","id":"95265bb7-3614-49bb-b38a-5c2a3fef5bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"588e0957-3211-420b-83ee-bf0da52394ce","name":"Get all Training Records","originalRequest":{"method":"GET","header":[],"url":"https://api.sympahr.net/api/GenericTrainingRecords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 May 2024 10:02:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=90985791ec94afe9f569253b71287fc6; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=90985791ec94afe9f569253b71287fc6; Path=/"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.sympahr.net/api/$metadata#GenericTrainingRecords\",\n    \"value\": [\n        {\n            \"Employee_number\": \"35830\",\n            \"modified\": \"2024-05-06T13:55:11Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46043\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35813\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35854\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35834\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44128\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35815\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46057\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44150\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44110\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46063\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44120\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46034\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35845\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46044\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46030\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35839\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44131\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46060\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44143\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35816\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35809\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35835\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44101\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46029\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44103\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46023\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44114\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44117\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44151\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46040\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46045\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44108\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44123\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44107\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44004\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44133\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46064\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35833\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46042\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35851\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46024\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46037\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35853\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46032\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46036\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46019\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46061\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44142\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44112\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44152\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35826\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35827\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35846\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44130\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35847\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35821\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46014\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35810\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46053\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46021\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35817\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35801\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44136\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35818\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35808\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44115\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44106\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35832\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46056\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46035\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35824\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46015\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46047\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44121\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46031\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44138\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46013\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35806\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44139\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35825\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46020\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35814\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44102\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44119\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46041\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35837\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44129\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44001\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46050\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35812\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35811\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44113\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46062\",\n            \"modified\": null,\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44124\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35838\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35804\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44122\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44118\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46046\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35807\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35843\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35850\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35836\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46048\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44137\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46038\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35829\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46018\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35852\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46058\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35849\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46016\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44140\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46017\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46012\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44116\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44104\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44081\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46059\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35841\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46039\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46022\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44132\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35803\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35805\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35802\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35840\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44051\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44141\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46011\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44091\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35848\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46033\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35822\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46010\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35844\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46026\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46025\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35842\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44125\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46027\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35823\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46052\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44111\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46054\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44126\",\n            \"modified\": \"2024-05-03T11:12:56Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44135\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35831\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35819\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35828\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44105\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44127\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"35820\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44109\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"44134\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"46028\",\n            \"modified\": \"2024-05-03T11:31:31Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90114\",\n            \"modified\": \"2024-05-03T12:16:03Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90115\",\n            \"modified\": \"2024-05-03T12:36:43Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90116\",\n            \"modified\": \"2024-05-03T12:37:09Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90119\",\n            \"modified\": \"2024-05-03T13:30:00Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90118\",\n            \"modified\": \"2024-05-03T13:29:47Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90117\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90122\",\n            \"modified\": \"2024-05-03T13:29:28Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90121\",\n            \"modified\": \"2024-05-03T13:30:13Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"90120\",\n            \"modified\": \"2024-05-03T13:27:01Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"10123\",\n            \"modified\": \"2024-05-07T08:39:33Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        },\n        {\n            \"Employee_number\": \"10126\",\n            \"modified\": \"2024-05-07T08:52:29Z\",\n            \"Test_user\": false,\n            \"Other_completed_training\": []\n        }\n    ]\n}"}],"_postman_id":"95265bb7-3614-49bb-b38a-5c2a3fef5bad"},{"name":"Import Files","id":"1b33bbff-0f0c-488b-85b7-514cedcbab7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"json","value":"{\"Date\":\"2024-03-15\",\"Type_of_document\":\"Employee CV from ATS\"}","type":"text"},{"key":"Files","type":"file","src":"postman-cloud:///1eee2c59-fdd9-4e00-a339-ee1332bc8d14"}]},"url":"https://api.sympahr.net/api/GenericFiles(35830)/Documents","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericFiles(35830)","Documents"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"ccbf949d-f65e-40e6-9fc2-b1436af30870","name":"Post files to employee profile","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"json","value":"{\"Date\":\"2024-03-15\",\"Type_of_document\":\"Employee CV from ATS\"}","type":"text"},{"key":"Files","type":"file","src":"postman-cloud:///1eee2c59-fdd9-4e00-a339-ee1332bc8d14"}]},"url":"https://api.sympahr.net/api/GenericFiles(35830)/Documents"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 03 May 2024 16:33:40 GMT"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Location","value":"GenericFiles(35830)/Documents(ecfd38b3-c1f9-4a84-b35f-621a7fccdcf5)"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1b33bbff-0f0c-488b-85b7-514cedcbab7d"},{"name":"NewHire","id":"333e79e7-133a-4348-ab7c-a8e847ebaba6","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"@odata.type\":\"GenericNewHire\",\"Given_first_names\":\"Peter Michael\",\"Preferred_given_name\":\"Peter\",\"Surname\":\"Johnson\",\"Candidate_ID_from_ATS\":\"50398539\",\"Country_setting\":\"FI\",\"Juridical_gender\":\"Male\",\"Phone_number_private\":\"+358 50 929 9292\",\"Street_address\":\"Fredrikinkatu 1 A 1\",\"Postal_code\":\"00500\",\"City\":\"Helsinki\",\"Original_hire_date\":\"2024-05-04\",\"Manager\":\"Sympa_ExplicitSetNotDefined\",\"active\":true}","options":{"raw":{"language":"json"}}},"url":"https://api.sympahr.net/api/GenericNewHire","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericNewHire"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"6640c63e-ef3c-4b35-9cbd-7630d31f97f7","name":"Create a New Hire in Sympa","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"@odata.type\":\"GenericNewHire\",\"Given_first_names\":\"Peter Michael\",\"Preferred_given_name\":\"Peter\",\"Surname\":\"Johnson\",\"Candidate_ID_from_ATS\":\"50378539\",\"Country_setting\":\"FI\",\"Juridical_gender\":\"Male\",\"Phone_number_private\":\"+358 50 929 9292\",\"Street_address\":\"Fredrikinkatu 1 A 1\",\"Postal_code\":\"00500\",\"City\":\"Helsinki\",\"Original_hire_date\":\"2024-05-04\",\"Manager\":\"Sympa_ExplicitSetNotDefined\",\"active\":true}","options":{"raw":{"language":"json"}}},"url":"https://api.sympahr.net/api/GenericNewHire"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 07 May 2024 08:23:24 GMT"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Location","value":"GenericNewHire(50378539)"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":null},{"id":"288362d0-df4b-459f-b49b-db33752b2a12","name":"Update Employee Information","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\"@odata.type\":\"GenericNewHire\",\"Phone_number_private\":\"+358 50 922 9392\"}","options":{"raw":{"language":"json"}}},"url":"https://api.sympahr.net/api/GenericNewHire(50398539)"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 07 May 2024 08:39:36 GMT"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Location","value":"GenericNewHire(50398539)"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"333e79e7-133a-4348-ab7c-a8e847ebaba6"},{"name":"NewHireAttachments","id":"ee0c68bc-7d9a-49d6-9a62-0fa1bd630f11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"json","value":"{\"Date\":\"2024-03-15\",\"Type_of_document\":\"Employee CV from ATS\"}","type":"text"},{"key":"Files","type":"file","src":"postman-cloud:///1eee2c59-fdd9-4e00-a339-ee1332bc8d14"},{"key":"Files","type":"file","src":"postman-cloud:///1eee2c5c-73fb-45a0-828a-1c852ec803ed"}]},"url":"https://api.sympahr.net/api/GenericNewHireAttachments(35830)/Documents","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"cb6be297-df44-41de-96c1-6991a5d1f978","id":"cb6be297-df44-41de-96c1-6991a5d1f978","name":"Sympa Generic API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","GenericNewHireAttachments(35830)","Documents"],"host":["api","sympahr","net"],"query":[],"variable":[]}},"response":[{"id":"cbe1dd25-4c4f-438b-b303-12e4fa9b477d","name":"Upload New Hire Attachments","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"json","value":"{\"Date\":\"2024-03-15\",\"Type_of_document\":\"Employee CV from ATS\"}","type":"text"},{"key":"Files","type":"file","src":"postman-cloud:///1eee2c59-fdd9-4e00-a339-ee1332bc8d14"},{"key":"Files","type":"file","src":"postman-cloud:///1eee2c5c-73fb-45a0-828a-1c852ec803ed"}]},"url":"https://api.sympahr.net/api/GenericNewHireAttachments(50378539)/Documents"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 07 May 2024 08:44:26 GMT"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Location","value":"GenericNewHireAttachments(50378539)/Documents(5eba330e-d354-4384-928c-7478e2b08a96)"},{"key":"OData-Version","value":"4.0"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ee0c68bc-7d9a-49d6-9a62-0fa1bd630f11"}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]}},"event":[{"listen":"prerequest","script":{"id":"87b73826-4f5a-4b6e-8621-97ce07bd411a","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"bed2e097-f425-4ee1-a316-13b1a9d465ed","type":"text/javascript","packages":{},"exec":[""]}}]}