{"info":{"_postman_id":"f83ad476-1e65-41ee-be44-38c7b343a7ac","name":"Buddee API Documentation","description":"<html><head></head><body><hr>\n<h2 id=\"general\">General</h2>\n<ul>\n<li><p><strong>Reading data</strong>: Use <code>GET</code> requests.</p>\n</li>\n<li><p><strong>Creating data</strong>: Use <code>POST</code> requests.</p>\n</li>\n<li><p><strong>Editing data</strong>: Use <code>PUT</code> requests.</p>\n</li>\n<li><p><strong>Deleting data</strong>: Use <code>DELETE</code> requests.</p>\n</li>\n</ul>\n<p>All API requests are made to the domain:<br><code>https://api.buddee.nl/RESOURCE_NAME</code></p>\n<p>For example, to retrieve employees, make a <code>GET</code> request to:<br><code>https://api.buddee.nl/employees</code></p>\n<p>To retrieve a single object, append its ID to the endpoint URL:<br><code>/employees/1234</code></p>\n<p>You can also provide query filters to refine your results. Below are some examples of query filters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Filter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>employees?include=active_or_future_employment.active_or_future_salary/</code></td>\n<td>Also returns the active employment with the active employment terms (including contract hours and other details).</td>\n</tr>\n<tr>\n<td><code>/employees?active=1</code></td>\n<td>All active employees that are not archived.</td>\n</tr>\n<tr>\n<td><code>/employees?sort=full_name</code></td>\n<td>Sort results alphabetically by employees' full names.</td>\n</tr>\n<tr>\n<td><code>/employees?page=2</code></td>\n<td>Retrieves page 2 of the results.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The <code>include</code> filter in the above example is a comma-separated list of related objects that you want to retrieve in the JSON results.</p>\n<hr>\n<h2 id=\"authentication\">Authentication</h2>\n<p>We use <strong>JWT tokens</strong> (an access token and a refresh token) to authenticate requests. To obtain the JWT tokens, send a <strong>Basic Auth</strong> <code>POST</code> request to the resource: <code>/auth/token</code>.</p>\n<h3 id=\"background-information-on-basic-auth-requests\">Background Information on Basic Auth Requests:</h3>\n<p>Basic authentication is a simple authentication method built into the HTTP protocol. The client sends HTTP requests with an <code>Authorization</code> header that contains the word <strong>Basic</strong> followed by a space and a base64-encoded string <code>username:password</code>. For example, to authorize as <code>demo</code> with password <code>p@55w0rd</code>, the client would send:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Basic ZGVtbzpwQDU1dzByZA==\n\n</code></pre><p>In our case, you use the user's email address and password in the Basic Auth request. As a result, you will receive a JSON response containing the <code>access_token</code> and <code>refresh_token</code>. The <code>access_token</code> is used to authenticate requests, and the <code>refresh_token</code> is used to refresh the <code>access_token</code> (by sending the refresh token back to <code>/auth/token</code>). Alternatively, you can simply obtain a new <code>access_token</code> using the Basic Auth method without needing to use the <code>refresh_token</code>.</p>\n<h3 id=\"authenticating-requests-with-the-access-token\">Authenticating Requests with the Access Token:</h3>\n<p>For each request, send the following header to authenticate with the <code>access_token</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer &lt;access_token&gt;\n\n</code></pre><h3 id=\"verifying-if-an-access-token-is-still-valid\">Verifying if an Access Token is Still Valid:</h3>\n<p>To check if the <code>access_token</code> is still valid, look at the <code>exp</code> claim in the JWT token data. You can extract this by splitting the JWT token by periods (<code>.</code>), and then decoding the first part (base64 decode). This will give you an array containing the <code>exp</code> claim, which is a UTC timestamp indicating the token's expiration time.</p>\n<hr>\n<h3 id=\"query-filters\">Query Filters</h3>\n<p>The Buddee API supports dynamic query filters, enabling flexible and expressive filtering on models. Instead of using fixed operators, you can leverage the following dynamic operators to refine your queries:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th><strong>Operator</strong></th>\n<th><strong>Explanation</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>eq:</code></td>\n<td><code>=</code></td>\n<td>Checks if the value of the column equals the provided value after <code>eq:</code>.</td>\n</tr>\n<tr>\n<td><code>ne:</code></td>\n<td><code>!=</code> or <code>NULL</code></td>\n<td>Checks if the value of the column is not equal to the provided value after <code>ne:</code> or is <code>NULL</code>.</td>\n</tr>\n<tr>\n<td><code>lt:</code></td>\n<td><code>&lt;</code></td>\n<td>Checks if the value of the column is less than the provided value after <code>lt:</code>.</td>\n</tr>\n<tr>\n<td><code>lte:</code></td>\n<td><code>&lt;=</code></td>\n<td>Checks if the value of the column is less than or equal to the provided value after <code>lte:</code>.</td>\n</tr>\n<tr>\n<td><code>gt:</code></td>\n<td><code>&gt;</code></td>\n<td>Checks if the value of the column is greater than the provided value after <code>gt:</code>.</td>\n</tr>\n<tr>\n<td><code>gte:</code></td>\n<td><code>&gt;=</code></td>\n<td>Checks if the value of the column is greater than or equal to the provided value after <code>gte:</code>.</td>\n</tr>\n<tr>\n<td><code>in:</code></td>\n<td><code>IN</code></td>\n<td>Checks if the value of the column exists in the list of values provided after <code>in:</code>.</td>\n</tr>\n<tr>\n<td><code>not_in:</code></td>\n<td><code>NOT IN</code></td>\n<td>Checks if the value of the column does not exist in the list of values provided after <code>not_in:</code>.</td>\n</tr>\n<tr>\n<td><code>between:</code></td>\n<td><code>BETWEEN</code></td>\n<td>Checks if the value of the column is within the two values provided after <code>between:</code> (comma-separated).</td>\n</tr>\n<tr>\n<td><code>contains:</code></td>\n<td><code>LIKE %...%</code></td>\n<td>Checks if the value of the column contains the substring provided after <code>contains:</code>.</td>\n</tr>\n<tr>\n<td><code>:null</code></td>\n<td><code>IS NULL</code></td>\n<td>Checks if the value of the column is <code>NULL</code>.</td>\n</tr>\n<tr>\n<td><code>:not_null</code></td>\n<td><code>IS NOT NULL</code></td>\n<td>Checks if the value of the column is not <code>NULL</code>.</td>\n</tr>\n<tr>\n<td>Default</td>\n<td><code>=</code></td>\n<td>Default case: Checks if the value of the column equals the provided value.</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"38946493","collectionId":"f83ad476-1e65-41ee-be44-38c7b343a7ac","publishedId":"2sBY4PMzA5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-17T08:13:24.000Z"},"item":[{"name":"Authentication","item":[{"name":"HealthCheck","id":"2fe88ffc-d4d4-4fe6-9f75-689cf2d31fde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl","urlObject":{"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"2523aecb-be6a-4a32-921f-a1d8f42aea9b","name":"HealthCheck","originalRequest":{"method":"GET","header":[],"url":"https://api.buddee.nl"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 12:20:11 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"2fe88ffc-d4d4-4fe6-9f75-689cf2d31fde"},{"name":"Auth/Token","event":[{"listen":"test","script":{"exec":["// Assert that the response contains { ok: true }","pm.test(\"Response has ok: true and store access token\", function () {","    let jsonData = pm.response.json();","    pm.expect(jsonData.ok).to.eql(true);","","    let accessToken = jsonData.data.access_token;","","    // Save the access_token in an environment variable","    pm.environment.set(\"access_token\", accessToken);","","    console.log (pm.environment.get(\"access_token\"));","});"],"type":"text/javascript","packages":{},"id":"33761a1f-4eda-4453-b271-ca9af1239227"}},{"listen":"prerequest","script":{"packages":{},"type":"text/javascript","id":"fe2ccc28-0f2e-4ed6-ab89-88811c220a54"}}],"id":"e9552adc-1975-4660-807f-add4e2d561fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://api.buddee.nl/auth/token","urlObject":{"path":["auth","token"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"key":"key","value":""}],"variable":[]}},"response":[],"_postman_id":"e9552adc-1975-4660-807f-add4e2d561fc"}],"id":"db6f23df-91e0-46b5-a514-92b13ccbbefe","_postman_id":"db6f23df-91e0-46b5-a514-92b13ccbbefe","description":""},{"name":"Users","item":[{"name":"Users","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"77e46225-53f0-4107-8e3d-3b45dd54b1d1"}}],"id":"b76fb365-f9e4-4742-b3f4-da9ae36138ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/users","urlObject":{"path":["users"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Organization ID </p>\n","type":"text/plain"},"key":"organization_id","value":""},{"disabled":true,"key":"name","value":""},{"disabled":true,"key":"email","value":""},{"disabled":true,"key":"locale","value":""},{"disabled":true,"key":"system_role","value":""},{"disabled":true,"key":"is_2fa_enabled","value":""},{"disabled":true,"key":"is_blocked","value":""},{"disabled":true,"key":"last_activity_at","value":""},{"disabled":true,"key":"last_login_at","value":""}],"variable":[]}},"response":[],"_postman_id":"b76fb365-f9e4-4742-b3f4-da9ae36138ef"},{"name":"Update user","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"022cfff4-0136-408f-8615-b7f72f147331"}}],"id":"0aaba436-40e4-463f-8674-aaf10784b837","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"e@mail.de\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/users/144103","description":"<p>NOTE: Only a user themselves can update their info</p>\n","urlObject":{"path":["users","144103"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"0104ad47-788a-4771-aac5-6a9191bb66d8","name":"Users Copy","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"e@mail.de\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/users/144103"},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 13 Dec 2024 13:09:47 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": false,\n    \"errors\": [\n        \"Unprocessable Content\"\n    ]\n}"}],"_postman_id":"0aaba436-40e4-463f-8674-aaf10784b837"},{"name":"Organisation users","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"be4a24ab-9d2f-4d68-bf30-ede4c41826b3"}}],"id":"387fba3d-9492-45f7-92d3-a80042821fb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/organization-users","urlObject":{"path":["organization-users"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>ID of the employee you want to filter on</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>ID of the company you want to filter on</p>\n","type":"text/plain"},"key":"company_id","value":""},{"disabled":true,"description":{"content":"<p>Department ID you want to folder on</p>\n","type":"text/plain"},"key":"department_id","value":""},{"disabled":true,"description":{"content":"<p>Filters on the registration type (can be found in organization settings)</p>\n","type":"text/plain"},"key":"time_registration_type_id","value":""},{"disabled":true,"description":{"content":"<p>Filters on time registrations for a specific project (can be found in organisation settings)</p>\n","type":"text/plain"},"key":"project_id","value":""},{"disabled":true,"description":{"content":"<p>Filters on a specific date</p>\n","type":"text/plain"},"key":"date","value":""},{"disabled":true,"key":"is_overtime","value":""},{"disabled":true,"key":"overtime_compensation_type","value":""}],"variable":[]}},"response":[],"_postman_id":"387fba3d-9492-45f7-92d3-a80042821fb1"},{"name":"Create organization user","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"93e9f33c-5987-406e-9381-5744657b6be3"}}],"id":"0643e232-ddeb-43e1-9d32-02564df0231f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n    \"organization_id\": 14799,\n    \"name\": \"AA BB\",\n    \"email\": \"AAA@BBB.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/organization-users","description":"<p>When creating a user keep in mind you need the organization_id.  </p>\n<p>When an organization_user is created it creates a user automatically, this is because a user is always linked to one or more organizations.</p>\n","urlObject":{"path":["organization-users"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"4328bea1-03d9-4044-b018-878d7980067c","name":"User created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n    \"organization_id\": 14799,\n    \"name\": \"AA BB\",\n    \"email\": \"AAA@BBB.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/organization-users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 13 Dec 2024 12:54:51 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 240838,\n        \"organization_id\": 14799,\n        \"user_id\": 157546,\n        \"employee_id\": null,\n        \"do_disable_2fa\": 0,\n        \"is_admin\": 0,\n        \"is_temp\": false,\n        \"is_terminated\": false,\n        \"created_at\": \"2024-12-13 12:54:51\",\n        \"updated_at\": \"2024-12-13 12:54:51\",\n        \"_permissions\": [\n            \"attribute.do_disable_2fa\",\n            \"attribute.is_admin\",\n            \"attribute.is_terminated\",\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"0643e232-ddeb-43e1-9d32-02564df0231f"}],"id":"aa298147-fea4-4693-9de9-0376cef8d92f","description":"<h4 id=\"sortables\">Sortables</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>Sort on the name of a user</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>Sorts by email adress</td>\n</tr>\n<tr>\n<td><code>is_2fa_enabled</code></td>\n<td>Sorts by the 2factor authentication status (enabled or disabled)</td>\n</tr>\n<tr>\n<td>last_activity_at</td>\n<td>Sorts by the users latest activity time.</td>\n</tr>\n<tr>\n<td>last_login_at</td>\n<td>Sorts by the users latest login time.</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"aa298147-fea4-4693-9de9-0376cef8d92f"},{"name":"Employees","item":[{"name":"Employments","item":[{"name":"Employment","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"72e749de-7b9a-4894-9951-e92c345b20b2"}}],"id":"255d4756-bf4f-402d-9207-aa6b934f50cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/employments","description":"<h3 id=\"retrieve-employments\">Retrieve Employments</h3>\n<p>Retrieves a list of all employments.</p>\n","urlObject":{"path":["employments"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Employee ID</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Any of 'employee', 'intern',  'self-employed', 'agency_worker', 'dga', 'volunteer' </p>\n","type":"text/plain"},"key":"type","value":""},{"disabled":true,"description":{"content":"<p>date</p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>date </p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_or_future","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"future","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"payroll","value":""}],"variable":[]}},"response":[{"id":"d7e5227a-ae95-4bb0-b5d0-860112e95b57","name":"employment","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/employments","host":["https://api.buddee.nl"],"path":["employments"],"query":[{"key":"employee_id","value":null,"description":"Employee ID","disabled":true},{"key":"type","value":null,"description":"Any of 'employee', 'intern',  'self-employed', 'agency_worker', 'dga', 'volunteer' ","disabled":true},{"key":"start_date","value":null,"description":"date","disabled":true},{"key":"end_date","value":null,"description":"date ","disabled":true},{"key":"active","value":null,"description":"boolean","disabled":true},{"key":"active_or_future","value":null,"description":"boolean","disabled":true},{"key":"future","value":null,"description":"boolean","disabled":true},{"key":"payroll","value":null,"description":"boolean","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 10:22:51 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 13,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 173192,\n            \"organization_id\": 14581,\n            \"employee_id\": 141481,\n            \"type\": \"employee\",\n            \"start_date\": \"2022-06-01\",\n            \"end_date\": null,\n            \"created_at\": \"2022-06-10 21:52:54\",\n            \"updated_at\": \"2022-06-10 21:53:00\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 173283,\n            \"organization_id\": 14581,\n            \"employee_id\": 141559,\n            \"type\": \"employee\",\n            \"start_date\": \"2022-06-01\",\n            \"end_date\": null,\n            \"created_at\": \"2022-06-27 13:36:37\",\n            \"updated_at\": \"2022-06-27 13:39:12\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 173432,\n            \"organization_id\": 14581,\n            \"employee_id\": 141711,\n            \"type\": \"employee\",\n            \"start_date\": \"2022-07-01\",\n            \"end_date\": null,\n            \"created_at\": \"2022-07-25 08:18:23\",\n            \"updated_at\": \"2022-07-25 08:18:51\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 175285,\n            \"organization_id\": 14581,\n            \"employee_id\": 143836,\n            \"type\": \"employee\",\n            \"start_date\": \"2022-11-22\",\n            \"end_date\": \"2023-02-28\",\n            \"created_at\": \"2022-11-30 07:57:31\",\n            \"updated_at\": \"2022-11-30 07:58:42\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 176366,\n            \"organization_id\": 14581,\n            \"employee_id\": 144774,\n            \"type\": \"employee\",\n            \"start_date\": \"2023-02-01\",\n            \"end_date\": \"2023-08-31\",\n            \"created_at\": \"2023-01-25 13:25:01\",\n            \"updated_at\": \"2023-01-25 13:25:40\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 177544,\n            \"organization_id\": 14581,\n            \"employee_id\": 145941,\n            \"type\": \"employee\",\n            \"start_date\": \"2023-04-01\",\n            \"end_date\": \"2024-06-30\",\n            \"created_at\": \"2023-04-04 10:11:25\",\n            \"updated_at\": \"2024-02-23 07:13:13\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 181648,\n            \"organization_id\": 14581,\n            \"employee_id\": 150361,\n            \"type\": \"employee\",\n            \"start_date\": \"2023-11-01\",\n            \"end_date\": \"2025-05-31\",\n            \"created_at\": \"2023-10-27 15:14:35\",\n            \"updated_at\": \"2024-05-15 07:34:14\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 182123,\n            \"organization_id\": 14581,\n            \"employee_id\": 150845,\n            \"type\": \"employee\",\n            \"start_date\": \"2023-11-15\",\n            \"end_date\": null,\n            \"created_at\": \"2023-11-14 12:05:53\",\n            \"updated_at\": \"2024-10-24 07:47:00\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 185283,\n            \"organization_id\": 14581,\n            \"employee_id\": 154075,\n            \"type\": \"employee\",\n            \"start_date\": \"2024-02-01\",\n            \"end_date\": \"2025-04-30\",\n            \"created_at\": \"2024-02-01 15:22:52\",\n            \"updated_at\": \"2024-08-22 20:17:30\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 186728,\n            \"organization_id\": 14581,\n            \"employee_id\": 155471,\n            \"type\": \"employee\",\n            \"start_date\": \"2024-03-04\",\n            \"end_date\": \"2025-02-28\",\n            \"created_at\": \"2024-03-06 14:49:20\",\n            \"updated_at\": \"2024-09-02 08:17:18\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 188561,\n            \"organization_id\": 14581,\n            \"employee_id\": 157425,\n            \"type\": \"employee\",\n            \"start_date\": \"2024-06-01\",\n            \"end_date\": \"2024-12-31\",\n            \"created_at\": \"2024-05-29 07:53:56\",\n            \"updated_at\": \"2024-06-03 12:30:49\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 189519,\n            \"organization_id\": 14581,\n            \"employee_id\": 158476,\n            \"type\": \"employee\",\n            \"start_date\": \"2024-07-01\",\n            \"end_date\": \"2025-06-30\",\n            \"created_at\": \"2024-07-02 08:17:41\",\n            \"updated_at\": \"2024-07-02 08:19:03\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 190619,\n            \"organization_id\": 14581,\n            \"employee_id\": 158909,\n            \"type\": \"employee\",\n            \"start_date\": \"2024-08-01\",\n            \"end_date\": \"2025-07-31\",\n            \"created_at\": \"2024-08-13 07:28:38\",\n            \"updated_at\": \"2024-08-13 07:29:55\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"255d4756-bf4f-402d-9207-aa6b934f50cd"},{"name":"Employment","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"4deb8cba-3bcf-419a-869c-8632688ad0bb"}}],"id":"1d662911-91cd-4611-a06f-54b7f132b72d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"https://api.buddee.nl/employments","description":"<p>Creates an employment for an employee</p>\n","urlObject":{"path":["employments"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>(required) Employee ID</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Any of 'employee', 'intern',  'self-employed', 'agency_worker', 'dga', 'volunteer' </p>\n","type":"text/plain"},"key":"type","value":""},{"disabled":true,"description":{"content":"<p>date</p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>date </p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_or_future","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"future","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"payroll","value":""}],"variable":[]}},"response":[{"id":"7832d404-985d-4bd0-a6c0-7baf2be23095","name":"employment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employee_id\": 163468,\n  \"type\": \"employee\",\n  \"start_date\": \"2024-12-01\",\n  \"end_date\": \"2025-03-01\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/employments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 10:43:06 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 194469,\n        \"organization_id\": 14799,\n        \"employee_id\": 163468,\n        \"type\": \"employee\",\n        \"start_date\": null,\n        \"end_date\": null,\n        \"created_at\": \"2024-12-03 10:43:06\",\n        \"updated_at\": \"2024-12-03 10:43:06\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"1d662911-91cd-4611-a06f-54b7f132b72d"}],"id":"98ee08c0-04c8-4f76-8ffc-fd3753d266b6","description":"<h3 id=\"sortables\">Sortables</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td>Sort by the type of employment.</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td>Sort by the employment start date.</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>Sort by the employment end date.</td>\n</tr>\n<tr>\n<td><code>employee</code></td>\n<td>Sort by the employee's full name and fallback to the employment start date.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"employment-model-table\">Employment Model Table</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Validation Rules</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>employee_id</code></td>\n<td><code>integer</code></td>\n<td>ID of the associated employee.</td>\n<td><code>required</code>, <code>uneditable</code>, <code>scoped_employee_id</code></td>\n<td>Foreign key to employees.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>string</code></td>\n<td>Type of employment.</td>\n<td><code>required</code>, <code>uneditable</code>, <code>config:employment_types</code></td>\n<td><code>employee</code>  <br /><code>intern</code>  <br /><code>self-employed   agency_worker</code>  <br /><code>dga</code>  <br /><code>volunteer</code></td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td><code>date</code></td>\n<td>Start date of the employment.</td>\n<td>Not specified in rules.</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td><code>date</code></td>\n<td>End date of the employment.</td>\n<td>Not specified in rules.</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"98ee08c0-04c8-4f76-8ffc-fd3753d266b6"},{"name":"Contracts","item":[{"name":"Retrieve contracts","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"82a9e95e-5afa-439d-9a4b-ce16fc95c462"}}],"id":"f0c5b8f4-8586-4ba7-84db-13a1ebd35fad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/contracts","description":"<h3 id=\"retrieve-contracts\">Retrieve Contracts</h3>\n<p>Retrieves a list of all contracts.</p>\n<p>Contracts rely on an employment being created before you can create a contract.</p>\n","urlObject":{"path":["contracts"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Employee ID</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Employment ID</p>\n","type":"text/plain"},"key":"employment_id","value":""},{"disabled":true,"key":"regular_rate_card_id","value":""},{"disabled":true,"key":"overtime_rate_card_id","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"duration","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"trial_end_date","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"is_signed","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"expired","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"expiring","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"future","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"payroll","value":""}],"variable":[]}},"response":[{"id":"011732fa-1c9f-4215-91ca-00ec6c7f14e8","name":"Contract","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/contracts","host":["https://api.buddee.nl"],"path":["contracts"],"query":[{"key":"employee_id","value":"","description":"Employee ID","type":"text","disabled":true},{"key":"employment_id","value":"","description":"Employment ID","type":"text","disabled":true},{"key":"regular_rate_card_id","value":"","type":"text","disabled":true},{"key":"overtime_rate_card_id","value":"","type":"text","disabled":true},{"key":"duration","value":"","description":"boolean","type":"text","disabled":true},{"key":"start_date","value":"","description":"boolean","type":"text","disabled":true},{"key":"end_date","value":"","description":"boolean","type":"text","disabled":true},{"key":"trial_end_date","value":"","description":"boolean","type":"text","disabled":true},{"key":"is_signed","value":"","description":"boolean","type":"text","disabled":true},{"key":"active","value":"","description":"boolean","type":"text","disabled":true},{"key":"expired","value":"","description":"boolean","type":"text","disabled":true},{"key":"expiring","value":"","description":"boolean","type":"text","disabled":true},{"key":"future","value":"","description":"boolean","type":"text","disabled":true},{"key":"payroll","value":"","description":"boolean","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 12:49:24 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 22,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 121158,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2019-01-01\",\n            \"end_date\": \"2022-12-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2021-04-20 07:30:52\",\n            \"updated_at\": \"2022-12-12 14:11:31\",\n            \"processable\": {\n                \"id\": 181484,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 121158,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-04 20:43:10\",\n                \"updated_at\": \"2022-11-04 20:43:10\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 121159,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": \"2021-05-31\",\n            \"trial_end_date\": \"2021-03-01\",\n            \"is_signed\": true,\n            \"created_at\": \"2021-04-20 07:37:03\",\n            \"updated_at\": \"2024-08-14 15:27:56\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 121163,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"employment_id\": 171098,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2021-03-01\",\n            \"end_date\": \"2022-04-30\",\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2021-04-20 07:47:00\",\n            \"updated_at\": \"2022-03-01 10:33:13\",\n            \"processable\": {\n                \"id\": 181486,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 121163,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-04 20:43:10\",\n                \"updated_at\": \"2022-11-04 20:43:10\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 121164,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 171099,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2021-03-01\",\n            \"end_date\": \"2021-12-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2021-04-20 07:50:09\",\n            \"updated_at\": \"2022-02-09 08:45:07\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 121165,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2020-01-01\",\n            \"end_date\": \"2022-06-07\",\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2021-04-20 07:52:39\",\n            \"updated_at\": \"2022-06-08 07:27:30\",\n            \"processable\": {\n                \"id\": 181485,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 121165,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-04 20:43:10\",\n                \"updated_at\": \"2022-11-04 20:43:10\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 121166,\n            \"organization_id\": 14799,\n            \"employee_id\": 138753,\n            \"employment_id\": 171101,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"permanent\",\n            \"notes\": null,\n            \"start_date\": \"2020-01-01\",\n            \"end_date\": null,\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2021-04-20 07:54:53\",\n            \"updated_at\": \"2021-11-06 23:09:51\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 121978,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2021-06-01\",\n            \"end_date\": \"2021-12-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2021-11-16 17:12:30\",\n            \"updated_at\": \"2024-08-14 15:27:32\",\n            \"processable\": {\n                \"id\": 181620,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 121978,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-11-04 20:43:12\",\n                \"updated_at\": \"2023-11-24 10:05:51\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 2,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 122331,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"permanent\",\n            \"notes\": null,\n            \"start_date\": \"2022-01-01\",\n            \"end_date\": null,\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2022-02-08 09:40:33\",\n            \"updated_at\": \"2022-10-26 09:02:29\",\n            \"processable\": {\n                \"id\": 181821,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 122331,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-04 20:43:13\",\n                \"updated_at\": \"2022-11-04 20:43:13\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 3,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 122341,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 171099,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2022-01-01\",\n            \"end_date\": \"2023-05-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2022-02-09 08:44:41\",\n            \"updated_at\": \"2023-05-30 06:58:08\",\n            \"processable\": {\n                \"id\": 194781,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 122341,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:25:11\",\n                \"updated_at\": \"2023-06-21 07:25:11\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 2,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 122983,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"employment_id\": 171098,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2022-05-01\",\n            \"end_date\": \"2023-12-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2022-04-25 10:51:51\",\n            \"updated_at\": \"2023-11-13 08:42:23\",\n            \"processable\": {\n                \"id\": 182210,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 122983,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-11-04 20:43:17\",\n                \"updated_at\": \"2023-09-18 08:32:02\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 2,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 123683,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2022-06-08\",\n            \"end_date\": \"2022-11-30\",\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2022-06-08 07:27:30\",\n            \"updated_at\": \"2022-12-07 13:23:40\",\n            \"processable\": {\n                \"id\": 182443,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 123683,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-04 20:43:18\",\n                \"updated_at\": \"2022-11-04 20:43:18\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 2,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 126320,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2022-12-01\",\n            \"end_date\": \"2023-12-03\",\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2022-12-07 13:23:40\",\n            \"updated_at\": \"2023-12-18 08:33:37\",\n            \"processable\": {\n                \"id\": 189042,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 126320,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-02-14 12:21:32\",\n                \"updated_at\": \"2023-02-14 12:21:32\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 3,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 126390,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"permanent\",\n            \"notes\": null,\n            \"start_date\": \"2023-01-01\",\n            \"end_date\": null,\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2022-12-12 14:11:31\",\n            \"updated_at\": \"2022-12-12 14:11:31\",\n            \"processable\": {\n                \"id\": 188701,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 126390,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-02-03 09:14:35\",\n                \"updated_at\": \"2023-11-30 10:36:32\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 2,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 130636,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 178679,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2021-12-20\",\n            \"end_date\": \"2023-07-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2023-06-19 10:49:37\",\n            \"updated_at\": \"2023-07-03 07:28:01\",\n            \"processable\": {\n                \"id\": 194780,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 130636,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:25:10\",\n                \"updated_at\": \"2023-06-21 07:25:10\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 131515,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 179338,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2021-08-01\",\n            \"end_date\": \"2023-08-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2023-08-01 11:51:17\",\n            \"updated_at\": \"2023-08-01 11:51:48\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 131516,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"employment_id\": 179339,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2020-07-01\",\n            \"end_date\": \"2023-08-31\",\n            \"trial_end_date\": null,\n            \"is_signed\": false,\n            \"created_at\": \"2023-08-01 11:52:17\",\n            \"updated_at\": \"2023-08-01 11:52:17\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 132428,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"employment_id\": 179339,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"permanent\",\n            \"notes\": null,\n            \"start_date\": \"2023-09-01\",\n            \"end_date\": null,\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2023-09-12 09:36:36\",\n            \"updated_at\": \"2023-09-12 09:36:36\",\n            \"processable\": {\n                \"id\": 200988,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 132428,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-09-18 09:28:19\",\n                \"updated_at\": \"2024-06-24 13:29:31\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 2,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 133033,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 179338,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"permanent\",\n            \"notes\": null,\n            \"start_date\": \"2023-10-01\",\n            \"end_date\": null,\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2023-10-02 07:13:01\",\n            \"updated_at\": \"2024-02-21 15:12:57\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 2,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 136696,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2023-12-04\",\n            \"end_date\": \"2024-08-20\",\n            \"trial_end_date\": \"2023-12-26\",\n            \"is_signed\": true,\n            \"created_at\": \"2023-12-18 08:33:37\",\n            \"updated_at\": \"2024-07-30 08:47:47\",\n            \"processable\": {\n                \"id\": 232671,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 136696,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2024-02-01 16:50:58\",\n                \"updated_at\": \"2024-02-01 16:50:58\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 4,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 136706,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"employment_id\": 183258,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2023-12-01\",\n            \"end_date\": \"2024-01-18\",\n            \"trial_end_date\": \"2023-12-31\",\n            \"is_signed\": true,\n            \"created_at\": \"2023-12-18 09:30:12\",\n            \"updated_at\": \"2024-01-19 14:28:56\",\n            \"processable\": {\n                \"id\": 229848,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 136706,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2024-01-16 09:10:38\",\n                \"updated_at\": \"2024-01-16 09:10:39\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 1,\n            \"is_last_in_sequence\": true\n        },\n        {\n            \"id\": 139412,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"employment_id\": 171098,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"temporary\",\n            \"notes\": null,\n            \"start_date\": \"2024-01-01\",\n            \"end_date\": \"2024-04-08\",\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2024-02-06 08:04:47\",\n            \"updated_at\": \"2024-03-14 08:48:57\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 3,\n            \"is_last_in_sequence\": false\n        },\n        {\n            \"id\": 142165,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"employment_id\": 171098,\n            \"regular_rate_card_id\": null,\n            \"overtime_rate_card_id\": null,\n            \"duration\": \"permanent\",\n            \"notes\": null,\n            \"start_date\": \"2024-04-09\",\n            \"end_date\": null,\n            \"trial_end_date\": null,\n            \"is_signed\": true,\n            \"created_at\": \"2024-04-03 08:28:11\",\n            \"updated_at\": \"2024-04-03 08:28:11\",\n            \"processable\": {\n                \"id\": 257475,\n                \"organization_id\": 14799,\n                \"entity_type\": \"contract\",\n                \"entity_id\": 142165,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2024-07-02 09:38:07\",\n                \"updated_at\": \"2024-07-02 09:38:07\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"sequence_number\": 4,\n            \"is_last_in_sequence\": true\n        }\n    ]\n}"}],"_postman_id":"f0c5b8f4-8586-4ba7-84db-13a1ebd35fad"},{"name":"Create a new contract","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"aac453d3-25ec-441a-9152-ccf384a5fbdc"}}],"id":"d780829d-9f28-45b0-b11d-bb4c380f9306","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employment_id\": \"194469\",\n  \"regular_rate_card_id\": null,\n  \"overtime_rate_card_id\": null,\n  \"duration\": \"permanent\",\n  \"notes\": \"\",\n  \"start_date\": \"2024-12-01\",\n  \"end_date\": \"\",\n  \"trial_end_date\": \"\",\n  \"is_signed\": \"\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/contracts","description":"<h3 id=\"retrieve-contracts\">Retrieve Contracts</h3>\n<p>Retrieves a list of all contracts.</p>\n<p>Contracts rely on an employment being created before you can create a contract.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>'temporary' (Fixed-term)\n'permanent' (Indefinite period)\n\n</code></pre>","urlObject":{"path":["contracts"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"5650d16e-0070-4803-9306-31bd2962510b","name":"New contract","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employment_id\": \"194469\",\n  \"regular_rate_card_id\": null,\n  \"overtime_rate_card_id\": null,\n  \"duration\": \"permanent\",\n  \"notes\": \"\",\n  \"start_date\": \"2024-12-01\",\n  \"end_date\": \"\",\n  \"trial_end_date\": \"\",\n  \"is_signed\": \"\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/contracts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 12:59:35 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 151706,\n        \"organization_id\": 14799,\n        \"employee_id\": 163468,\n        \"employment_id\": 194469,\n        \"regular_rate_card_id\": null,\n        \"overtime_rate_card_id\": null,\n        \"duration\": \"permanent\",\n        \"notes\": null,\n        \"start_date\": \"2024-12-01\",\n        \"end_date\": null,\n        \"trial_end_date\": null,\n        \"is_signed\": false,\n        \"created_at\": \"2024-12-03 12:59:35\",\n        \"updated_at\": \"2024-12-03 12:59:35\",\n        \"processable\": null,\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ],\n        \"sequence_number\": 1,\n        \"is_last_in_sequence\": true\n    }\n}"}],"_postman_id":"d780829d-9f28-45b0-b11d-bb4c380f9306"},{"name":"Update contracts","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"3e82fc78-53a6-425d-adae-c8f2c855e581"}}],"id":"9acce006-16e8-469b-9cd9-7fa3d9b4d47b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"notes\": \"Small edit to the contract\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/contracts/151706","description":"<h3 id=\"retrieve-contracts\">Retrieve Contracts</h3>\n<p>Retrieves a list of all contracts.</p>\n<p>Contracts rely on an employment being created before you can create a contract.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>'temporary' (Fixed-term)\n'permanent' (Indefinite period)\n\n</code></pre>","urlObject":{"path":["contracts","151706"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"ec8cfa59-2854-45c3-8f1c-4eee42d8584d","name":"Contract","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"notes\": \"Small edit to the contract\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/contracts/151630"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 09:05:59 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 151630,\n        \"organization_id\": 39997,\n        \"employee_id\": 163374,\n        \"employment_id\": 194414,\n        \"regular_rate_card_id\": 154997,\n        \"overtime_rate_card_id\": 154997,\n        \"duration\": \"permanent\",\n        \"notes\": \"Small edit to the contract\",\n        \"start_date\": \"2024-12-30\",\n        \"end_date\": null,\n        \"trial_end_date\": \"2025-02-28\",\n        \"is_signed\": true,\n        \"created_at\": \"2024-11-08 14:17:10\",\n        \"updated_at\": \"2024-12-04 09:05:59\",\n        \"processable\": null,\n        \"employment\": {\n            \"id\": 194414,\n            \"organization_id\": 39997,\n            \"employee_id\": 163374,\n            \"type\": \"employee\",\n            \"start_date\": \"2024-12-30\",\n            \"end_date\": null,\n            \"created_at\": \"2024-11-08 14:16:31\",\n            \"updated_at\": \"2024-11-08 14:17:11\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ],\n        \"sequence_number\": 1,\n        \"is_last_in_sequence\": true\n    }\n}"}],"_postman_id":"9acce006-16e8-469b-9cd9-7fa3d9b4d47b"}],"id":"8197fde4-8b45-4f86-8c2b-99043ff81731","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Validation Rules</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>employee_id</code></td>\n<td><code>integer</code></td>\n<td>The employee this contract is related to</td>\n<td><code>required</code>, <code>uneditable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>employment_id</code></td>\n<td><code>integer</code></td>\n<td>The unique identifier for the employment record</td>\n<td><code>required</code>, <code>uneditable</code>,</td>\n<td>Must refer to a valid Employment record.</td>\n</tr>\n<tr>\n<td><code>regular_rate_card_id</code></td>\n<td><code>integer</code></td>\n<td>ID for the regular rate card</td>\n<td><code>nullable</code></td>\n<td>Optional, if not provided, defaults to no rate card.</td>\n</tr>\n<tr>\n<td><code>overtime_rate_card_id</code></td>\n<td><code>integer</code></td>\n<td>ID for the overtime rate card</td>\n<td><code>nullable</code></td>\n<td>Optional, if not provided, defaults to no overtime rate.</td>\n</tr>\n<tr>\n<td><code>duration</code></td>\n<td><code>string</code></td>\n<td>The duration of the contract</td>\n<td><code>required</code>, <code>permanent</code>, <code>temporary</code></td>\n<td>Must match one of the predefined contract durations.</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td><code>date</code></td>\n<td>The start date of the employment contract</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code></td>\n<td>Must be in <code>Y-m-d</code> format.</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td><code>date</code></td>\n<td>The end date of the employment contract</td>\n<td><code>nullable</code>, <code>required_if:duration,temporary</code>, <code>date_format:Y-m-d</code>, <code>after_or_equal:start_date</code></td>\n<td>Required only if the contract is temporary.</td>\n</tr>\n<tr>\n<td><code>trial_end_date</code></td>\n<td><code>date</code></td>\n<td>The end date for the trial period</td>\n<td><code>nullable</code>, <code>date_format:Y-m-d</code>, <code>after_or_equal:start_date</code></td>\n<td>Optional, must be after or equal to the start date.</td>\n</tr>\n<tr>\n<td><code>is_signed</code></td>\n<td><code>boolean</code></td>\n<td>Whether the contract is signed or not</td>\n<td><code>required</code>, <code>boolean</code></td>\n<td>Must be a boolean value (<code>true</code> or <code>false</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8197fde4-8b45-4f86-8c2b-99043ff81731"},{"name":"Positions","item":[{"name":"Retrieve positions","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"54aba2c4-2715-41e1-a77d-f659e1274c1d"}}],"id":"8c8dad76-9062-493e-ad1b-64e46a2bdb54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/positions","description":"<h3 id=\"retrieve-positions\">Retrieve positions</h3>\n<p>Retrieves a list of all positions.</p>\n","urlObject":{"path":["positions"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>integer, The Employee ID this position is assigned to, see employees resource</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>integer, The  Related Job ID from the jobs resource this position relates to</p>\n","type":"text/plain"},"key":"job_id","value":""},{"disabled":true,"description":{"content":"<p>integer, The Department ID from the departments resource</p>\n","type":"text/plain"},"key":"department_id","value":""},{"disabled":true,"description":{"content":"<p>integer, Location ID from the locations resource</p>\n","type":"text/plain"},"key":"location_id","value":""},{"disabled":true,"description":{"content":"<p>integer, Manager ID - An employee ID called \"manager\" who is managing the employee this position is assigned to</p>\n","type":"text/plain"},"key":"manager_id","value":""},{"disabled":true,"description":{"content":"<p>integer, Indirect manager ID</p>\n","type":"text/plain"},"key":"indirect_manager_id","value":""},{"disabled":true,"description":{"content":"<p>integer, Costcenter ID</p>\n","type":"text/plain"},"key":"cost_center_id","value":""},{"disabled":true,"description":{"content":"<p>integer, Cost unit Id</p>\n","type":"text/plain"},"key":"cost_unit_id","value":""},{"disabled":true,"description":{"content":"<p>date, Start date </p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>date, End date</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"future","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"payroll","value":""}],"variable":[]}},"response":[{"id":"c70e5616-267e-4fe4-b1d8-37fdea09ab23","name":"Positions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/positions","host":["https://api.buddee.nl"],"path":["positions"],"query":[{"key":"employee_id","value":"","description":"integer, The Employee ID this position is assigned to, see employees resource","type":"text","disabled":true},{"key":"job_id","value":"","description":"integer, The  Related Job ID from the jobs resource this position relates to","type":"text","disabled":true},{"key":"department_id","value":"","description":"integer, The Department ID from the departments resource","type":"text","disabled":true},{"key":"location_id","value":"","description":"integer, Location ID from the locations resource","type":"text","disabled":true},{"key":"manager_id","value":"","description":"integer, Manager ID - An employee ID called \"manager\" who is managing the employee this position is assigned to","type":"text","disabled":true},{"key":"indirect_manager_id","value":"","description":"integer, Indirect manager ID","type":"text","disabled":true},{"key":"cost_center_id","value":"","description":"integer, Costcenter ID","type":"text","disabled":true},{"key":"cost_unit_id","value":"","description":"integer, Cost unit Id","type":"text","disabled":true},{"key":"start_date","value":"","description":"date, Start date ","type":"text","disabled":true},{"key":"end_date","value":"","description":"date, End date","type":"text","disabled":true},{"key":"active","value":"","description":"boolean","type":"text","disabled":true},{"key":"future","value":"","description":"boolean","type":"text","disabled":true},{"key":"payroll","value":"","description":"boolean","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 09:32:58 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 10,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 126780,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"job_id\": 203390,\n            \"department_id\": 154744,\n            \"location_id\": 196741,\n            \"manager_id\": 138752,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": null,\n            \"created_at\": \"2021-04-20 07:44:49\",\n            \"updated_at\": \"2024-09-12 15:18:03\",\n            \"processable\": {\n                \"id\": 200989,\n                \"organization_id\": 14799,\n                \"entity_type\": \"position\",\n                \"entity_id\": 126780,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-09-18 09:28:20\",\n                \"updated_at\": \"2024-09-12 15:18:03\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 126781,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"job_id\": 207149,\n            \"department_id\": 154744,\n            \"location_id\": 196741,\n            \"manager_id\": null,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": \"2024-09-10\",\n            \"created_at\": \"2021-04-20 07:45:49\",\n            \"updated_at\": \"2024-09-12 12:21:21\",\n            \"processable\": {\n                \"id\": 181489,\n                \"organization_id\": 14799,\n                \"entity_type\": \"position\",\n                \"entity_id\": 126781,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-04 20:43:10\",\n                \"updated_at\": \"2024-07-02 09:38:07\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 126782,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"job_id\": 204156,\n            \"department_id\": 154739,\n            \"location_id\": 196741,\n            \"manager_id\": 138750,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": null,\n            \"created_at\": \"2021-04-20 07:49:48\",\n            \"updated_at\": \"2023-12-18 08:28:33\",\n            \"processable\": {\n                \"id\": 194782,\n                \"organization_id\": 14799,\n                \"entity_type\": \"position\",\n                \"entity_id\": 126782,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-06-21 07:25:12\",\n                \"updated_at\": \"2023-12-04 11:39:51\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 126783,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"job_id\": 200535,\n            \"department_id\": 154740,\n            \"location_id\": 196773,\n            \"manager_id\": 138752,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-01-01\",\n            \"end_date\": null,\n            \"created_at\": \"2021-04-20 07:52:25\",\n            \"updated_at\": \"2023-12-18 08:29:33\",\n            \"processable\": {\n                \"id\": 181488,\n                \"organization_id\": 14799,\n                \"entity_type\": \"position\",\n                \"entity_id\": 126783,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-04 20:43:10\",\n                \"updated_at\": \"2024-01-12 11:36:13\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 126784,\n            \"organization_id\": 14799,\n            \"employee_id\": 138753,\n            \"job_id\": 200533,\n            \"department_id\": null,\n            \"location_id\": null,\n            \"manager_id\": 138752,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": null,\n            \"created_at\": \"2021-04-20 07:54:15\",\n            \"updated_at\": \"2023-12-18 09:43:59\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 128236,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"job_id\": 200533,\n            \"department_id\": null,\n            \"location_id\": null,\n            \"manager_id\": 138750,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2019-01-01\",\n            \"end_date\": \"2023-06-30\",\n            \"created_at\": \"2022-04-13 08:04:17\",\n            \"updated_at\": \"2023-12-18 09:43:59\",\n            \"processable\": {\n                \"id\": 181487,\n                \"organization_id\": 14799,\n                \"entity_type\": \"position\",\n                \"entity_id\": 128236,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-11-04 20:43:10\",\n                \"updated_at\": \"2023-12-04 11:50:00\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 134915,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"job_id\": 203390,\n            \"department_id\": 154739,\n            \"location_id\": 196773,\n            \"manager_id\": 138750,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-07-01\",\n            \"end_date\": null,\n            \"created_at\": \"2023-06-26 09:07:40\",\n            \"updated_at\": \"2023-12-18 08:26:46\",\n            \"processable\": {\n                \"id\": 195321,\n                \"organization_id\": 14799,\n                \"entity_type\": \"position\",\n                \"entity_id\": 134915,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-07-05 11:26:21\",\n                \"updated_at\": \"2024-01-30 12:21:41\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 140355,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"job_id\": 208884,\n            \"department_id\": 159269,\n            \"location_id\": 196773,\n            \"manager_id\": 138745,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-12-01\",\n            \"end_date\": null,\n            \"created_at\": \"2023-12-18 09:30:57\",\n            \"updated_at\": \"2024-09-12 12:26:22\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 150483,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"job_id\": 207149,\n            \"department_id\": 154744,\n            \"location_id\": 196741,\n            \"manager_id\": null,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-09-11\",\n            \"end_date\": null,\n            \"created_at\": \"2024-09-12 12:21:20\",\n            \"updated_at\": \"2024-09-24 14:13:22\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 150586,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"job_id\": 203439,\n            \"department_id\": 155885,\n            \"location_id\": null,\n            \"manager_id\": 138750,\n            \"indirect_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-09-21\",\n            \"end_date\": null,\n            \"created_at\": \"2024-09-17 08:19:13\",\n            \"updated_at\": \"2024-09-25 13:27:32\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"8c8dad76-9062-493e-ad1b-64e46a2bdb54"},{"name":"Create a new position","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"d2fbe3fc-5372-4ce7-8220-004a84501daa"}}],"id":"12c10ce4-004d-4d76-bb64-c279db80027a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 163468,\n    \"job_id\": 200535,\n    \"department_id\": 154740,\n    \"location_id\": 196773,\n    \"manager_id\": 138752,\n    \"indirect_manager_id\": null,\n    \"cost_center_id\": null,\n    \"cost_unit_id\": null,\n    \"notes\": null,\n    \"start_date\": \"2020-01-01\",\n    \"end_date\": null\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/positions","description":"<h3 id=\"create-a-position\">Create a position</h3>\n","urlObject":{"path":["positions"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"211cc0e5-d8e5-4e47-83b1-39b1194d7e72","name":"Create a new position","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138751,\n    \"job_id\": 200535,\n    \"department_id\": 154740,\n    \"location_id\": 196773,\n    \"manager_id\": 138752,\n    \"indirect_manager_id\": null,\n    \"cost_center_id\": null,\n    \"cost_unit_id\": null,\n    \"notes\": null,\n    \"start_date\": \"2020-01-01\",\n    \"end_date\": null\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/positions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 09:40:05 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 153833,\n        \"organization_id\": 14799,\n        \"employee_id\": 138751,\n        \"job_id\": 200535,\n        \"department_id\": 154740,\n        \"location_id\": 196773,\n        \"manager_id\": 138752,\n        \"indirect_manager_id\": null,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"notes\": null,\n        \"start_date\": \"2020-01-01\",\n        \"end_date\": null,\n        \"created_at\": \"2024-12-04 09:40:05\",\n        \"updated_at\": \"2024-12-04 09:40:05\",\n        \"processable\": null,\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"12c10ce4-004d-4d76-bb64-c279db80027a"},{"name":"Update position","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"7a2f0feb-81db-4426-9363-f4ed1a123713"}}],"id":"49cb22bb-640c-47e9-8bba-4bdbca8755cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"notes\": \"Notes..\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/positions/153834","urlObject":{"path":["positions","153834"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"2b233019-e6d8-4698-b40f-58c3405ff05f","name":"Update position","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"notes\": \"Notes..\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/positions/153833"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 09:42:35 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 153833,\n        \"organization_id\": 14799,\n        \"employee_id\": 138751,\n        \"job_id\": 200535,\n        \"department_id\": 154740,\n        \"location_id\": 196773,\n        \"manager_id\": 138752,\n        \"indirect_manager_id\": null,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"notes\": \"Notes..\",\n        \"start_date\": \"2020-01-01\",\n        \"end_date\": null,\n        \"created_at\": \"2024-12-04 09:40:05\",\n        \"updated_at\": \"2024-12-04 09:42:35\",\n        \"processable\": null,\n        \"employee\": {\n            \"id\": 138751,\n            \"organization_id\": 14799,\n            \"company_id\": 14799,\n            \"job_id\": 200535,\n            \"department_id\": 154740,\n            \"location_id\": 196773,\n            \"buddy_id\": null,\n            \"manager_id\": 138752,\n            \"indirect_manager_id\": null,\n            \"hr_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"first_name\": \"Soeraya\",\n            \"initials\": null,\n            \"last_name\": \"Folkers\",\n            \"last_name_prefix\": null,\n            \"last_name_composition\": \"own_name\",\n            \"composed_last_name\": \"Folkers\",\n            \"composed_last_name_prefix\": null,\n            \"full_name\": \"Soeraya Folkers\",\n            \"full_name_alt\": \"Folkers, Soeraya\",\n            \"gender\": null,\n            \"number\": \"3\",\n            \"exact_employee_number\": \"10\",\n            \"nationality\": null,\n            \"national_id\": \"280044318\",\n            \"birth_place\": null,\n            \"birth_date\": \"1993-04-06\",\n            \"marital_status\": \"married\",\n            \"marital_date\": \"2022-06-20\",\n            \"partner_last_name\": null,\n            \"partner_last_name_prefix\": null,\n            \"work_email\": \"gigop15973@zevars.com\",\n            \"work_phone\": null,\n            \"work_phone_extension\": null,\n            \"work_mobile\": null,\n            \"personal_email\": null,\n            \"personal_phone\": null,\n            \"personal_mobile\": null,\n            \"street\": null,\n            \"street_number\": null,\n            \"street_number_suffix\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"country\": null,\n            \"bank_account_holder\": \"S. Folkers\",\n            \"bank_account_iban\": \"NL68RABO5598380021\",\n            \"emergency_contact_name\": null,\n            \"emergency_contact_relation\": null,\n            \"emergency_contact_email\": null,\n            \"emergency_contact_phone\": null,\n            \"hire_date\": \"2022-01-25\",\n            \"employment_date\": \"2022-01-25\",\n            \"first_day_at_work_date\": \"2022-01-25\",\n            \"seniority_date\": \"2022-01-25\",\n            \"archived_at\": null,\n            \"created_at\": \"2021-04-20 07:04:24\",\n            \"updated_at\": \"2024-04-02 15:29:35\",\n            \"company\": {\n                \"id\": 14799,\n                \"organization_id\": 14799,\n                \"home_wage_component_type_id\": null,\n                \"office_wage_component_type_id\": null,\n                \"travel_wage_component_type_id\": null,\n                \"name\": \"Buddee Demo Nederland\",\n                \"legal_name\": \"Buddee Demo Nederland\",\n                \"legal_form\": \"B.V.\",\n                \"coc_number\": \"78265193\",\n                \"vat_number\": \"NL861338765B01\",\n                \"payroll_tax_number\": \"123456782L01\",\n                \"sector_code\": \"044\",\n                \"cao_code\": \"nvt\",\n                \"payroll_iban\": \"NL83RABO4259614754\",\n                \"email\": \"hey@buddee.nl\",\n                \"admin_email\": \"finance@buddee.nl\",\n                \"invoice_email\": null,\n                \"phone\": \"085 808 51 25\",\n                \"street\": \"Razeil\",\n                \"street_number\": \"36\",\n                \"street_number_suffix\": null,\n                \"postal_code\": \"1319 EA\",\n                \"city\": \"Almere\",\n                \"country\": \"NL\",\n                \"bank_account_holder\": \"Buddee Demonstraties B.V.\",\n                \"bank_account_iban\": \"NL83RABO4259614754\",\n                \"payment_method\": null,\n                \"created_at\": \"2021-04-19 12:39:15\",\n                \"updated_at\": \"2023-12-18 09:55:04\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"read.full\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"invite\",\n                \"read\",\n                \"read.full\",\n                \"update\",\n                \"approvals.read\",\n                \"approvals.update\",\n                \"assets.create\",\n                \"assets.delete\",\n                \"assets.read\",\n                \"assets.read.unassigned\",\n                \"assets.update\",\n                \"company_bikes.create\",\n                \"company_bikes.delete\",\n                \"company_bikes.read\",\n                \"company_bikes.update\",\n                \"company_cars.create\",\n                \"company_cars.delete\",\n                \"company_cars.read\",\n                \"company_cars.update\",\n                \"contracts.create\",\n                \"contracts.delete\",\n                \"contracts.read\",\n                \"contracts.update\",\n                \"documents.attribute.is_shared_with_all\",\n                \"documents.attribute.is_shared_with_employee\",\n                \"documents.create\",\n                \"documents.delete\",\n                \"documents.read\",\n                \"documents.read.unassigned\",\n                \"documents.update\",\n                \"employee_attributes.create\",\n                \"employee_attributes.delete\",\n                \"employee_attributes.read\",\n                \"employee_attributes.update\",\n                \"employee_change_requests.create\",\n                \"employee_change_requests.delete\",\n                \"employee_change_requests.merge\",\n                \"employee_change_requests.read\",\n                \"employee_change_requests.update\",\n                \"employee_changes.export\",\n                \"employee_changes.read\",\n                \"employee_course_documents.create\",\n                \"employee_course_documents.delete\",\n                \"employee_course_documents.read\",\n                \"employee_courses.create\",\n                \"employee_courses.delete\",\n                \"employee_courses.management_settings\",\n                \"employee_courses.read\",\n                \"employee_courses.report\",\n                \"employee_courses.update\",\n                \"employee_labels.create\",\n                \"employee_labels.delete\",\n                \"employee_labels.read\",\n                \"employee_labels.update\",\n                \"employee_leave_types.delete\",\n                \"employee_leave_types.read\",\n                \"employee_leave_types.report\",\n                \"employee_leave_types.update\",\n                \"employee_notes.create\",\n                \"employee_notes.delete\",\n                \"employee_notes.read\",\n                \"employee_notes.update\",\n                \"employee_payroll_settings.read\",\n                \"employee_payroll_settings.update\",\n                \"employee_pictures.create\",\n                \"employee_pictures.delete\",\n                \"employee_pictures.read\",\n                \"employee_projects.create\",\n                \"employee_projects.delete\",\n                \"employee_projects.read\",\n                \"employee_projects.update\",\n                \"employee_settings.management_settings\",\n                \"employee_settings.read\",\n                \"employee_settings.update\",\n                \"employee_skills.create\",\n                \"employee_skills.delete\",\n                \"employee_skills.read\",\n                \"employee_skills.report\",\n                \"employee_skills.update\",\n                \"employments.create\",\n                \"employments.delete\",\n                \"employments.read\",\n                \"employments.update\",\n                \"expense_documents.create\",\n                \"expense_documents.delete\",\n                \"expense_documents.read\",\n                \"expense_items.create\",\n                \"expense_items.delete\",\n                \"expense_items.read\",\n                \"expense_items.update\",\n                \"expenses.attribute.is_processed\",\n                \"expenses.create\",\n                \"expenses.delete\",\n                \"expenses.read\",\n                \"expenses.report\",\n                \"expenses.update\",\n                \"family_members.create\",\n                \"family_members.delete\",\n                \"family_members.read\",\n                \"family_members.update\",\n                \"form_answers.read\",\n                \"form_answers.update\",\n                \"form_documents.create\",\n                \"form_documents.delete\",\n                \"form_documents.read\",\n                \"form_viewers.create\",\n                \"form_viewers.delete\",\n                \"form_viewers.read\",\n                \"forms.create\",\n                \"forms.delete\",\n                \"forms.management_settings\",\n                \"forms.read\",\n                \"forms.update\",\n                \"goals.create\",\n                \"goals.delete\",\n                \"goals.read\",\n                \"goals.report\",\n                \"goals.update\",\n                \"leave_balance_adjustments.create\",\n                \"leave_balance_adjustments.delete\",\n                \"leave_balance_adjustments.read\",\n                \"leave_balance_adjustments.update\",\n                \"leave_balance_prorations.read\",\n                \"leave_balances.create\",\n                \"leave_balances.delete\",\n                \"leave_balances.read\",\n                \"leave_balances.report\",\n                \"leave_balances.update\",\n                \"leave_registrations.create\",\n                \"leave_registrations.delete\",\n                \"leave_registrations.read\",\n                \"leave_registrations.update\",\n                \"leave_requests.create\",\n                \"leave_requests.delete\",\n                \"leave_requests.read\",\n                \"leave_requests.update\",\n                \"leave_schemes.create\",\n                \"leave_schemes.delete\",\n                \"leave_schemes.read\",\n                \"leave_schemes.update\",\n                \"payroll_documents.create\",\n                \"payroll_documents.delete\",\n                \"payroll_documents.read\",\n                \"payroll_documents.read.unassigned\",\n                \"payroll_documents.update\",\n                \"positions.create\",\n                \"positions.delete\",\n                \"positions.read\",\n                \"positions.update\",\n                \"salaries.create\",\n                \"salaries.delete\",\n                \"salaries.read\",\n                \"salaries.report\",\n                \"salaries.update\",\n                \"sick_leave_registrations.attribute.do_auto_calculate\",\n                \"sick_leave_registrations.attribute.is_verified\",\n                \"sick_leave_registrations.create\",\n                \"sick_leave_registrations.delete\",\n                \"sick_leave_registrations.read\",\n                \"sick_leave_registrations.report\",\n                \"sick_leave_registrations.update\",\n                \"tasks.create\",\n                \"tasks.delete\",\n                \"tasks.read\",\n                \"tasks.read.unassigned\",\n                \"tasks.update\",\n                \"template_concepts.create\",\n                \"template_concepts.delete\",\n                \"template_concepts.read\",\n                \"template_concepts.update\",\n                \"terminations.create\",\n                \"terminations.delete\",\n                \"terminations.read\",\n                \"terminations.update\",\n                \"time_registrations.attribute.is_processed\",\n                \"time_registrations.create\",\n                \"time_registrations.delete\",\n                \"time_registrations.import\",\n                \"time_registrations.leave_balance_adjustment.create\",\n                \"time_registrations.leave_balance_adjustment.delete\",\n                \"time_registrations.read\",\n                \"time_registrations.report\",\n                \"time_registrations.update\",\n                \"trip_registrations.attribute.is_processed\",\n                \"trip_registrations.create\",\n                \"trip_registrations.delete\",\n                \"trip_registrations.import\",\n                \"trip_registrations.read\",\n                \"trip_registrations.report\",\n                \"trip_registrations.update\",\n                \"wage_components.create\",\n                \"wage_components.delete\",\n                \"wage_components.read\",\n                \"wage_components.update\",\n                \"work_location_statuses.attribute.is_processed\",\n                \"work_location_statuses.create\",\n                \"work_location_statuses.delete\",\n                \"work_location_statuses.read\",\n                \"work_location_statuses.report\",\n                \"work_location_statuses.update\",\n                \"work_schedules.create\",\n                \"work_schedules.delete\",\n                \"work_schedules.read\",\n                \"work_schedules.update\"\n            ],\n            \"salutation\": \"Mx.\"\n        },\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"49cb22bb-640c-47e9-8bba-4bdbca8755cd"}],"id":"eaaf3532-972b-4de1-aebd-b37d5072b89e","description":"<h3 id=\"sortables\">Sortables</h3>\n<p>Use these fields in the sort query param:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>start_date</code></td>\n<td>Start date of the position.</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>End date of the position.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Validation Rules</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employee_id</td>\n<td><code>integer</code></td>\n<td>ID of the employee</td>\n<td><code>required</code>, <code>uneditable</code>,</td>\n<td></td>\n</tr>\n<tr>\n<td>job_id</td>\n<td><code>integer</code></td>\n<td>ID of the job</td>\n<td><code>required</code>, <code>exists:jobs</code></td>\n<td></td>\n</tr>\n<tr>\n<td>department_id</td>\n<td><code>integer</code></td>\n<td>ID of the department</td>\n<td><code>nullable</code>, <code>exists:departments</code></td>\n<td></td>\n</tr>\n<tr>\n<td>location_id</td>\n<td><code>integer</code></td>\n<td>ID of the location</td>\n<td><code>nullable</code>, <code>exists:locations</code></td>\n<td></td>\n</tr>\n<tr>\n<td>manager_id</td>\n<td><code>integer</code></td>\n<td>ID of the manager</td>\n<td><code>nullable</code>, <code>exists:employees</code></td>\n<td></td>\n</tr>\n<tr>\n<td>indirect_manager_id</td>\n<td><code>integer</code></td>\n<td>ID of the indirect manager</td>\n<td><code>nullable</code>, <code>exists:employees</code></td>\n<td></td>\n</tr>\n<tr>\n<td>cost_center_id</td>\n<td><code>integer</code></td>\n<td>ID of the cost center</td>\n<td><code>nullable</code>, <code>required_with:cost_unit_id</code>, <code>exists:cost_centers</code></td>\n<td></td>\n</tr>\n<tr>\n<td>cost_unit_id</td>\n<td><code>integer</code></td>\n<td>ID of the cost unit</td>\n<td><code>nullable</code>, <code>exists:cost_units</code></td>\n<td></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><code>string</code></td>\n<td>Start date of the record</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"eaaf3532-972b-4de1-aebd-b37d5072b89e"},{"name":"Salaries","item":[{"name":"Retrieve salaries","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"636c8871-95fd-4b66-997b-731bc9971249"}}],"id":"7e20fd47-e598-4e09-b8dd-53ab6e3a588f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/salaries","description":"<h3 id=\"retrieve-all-salaries\">Retrieve all salaries</h3>\n","urlObject":{"path":["salaries"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>integer: The Employee ID this position is assigned to, see employees resource</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>integer: The  Related employment ID from the employment resource this position relates to</p>\n","type":"text/plain"},"key":"employment_id","value":""},{"disabled":true,"description":{"content":"<p>string: 'full-time','part-time','on-call'</p>\n","type":"text/plain"},"key":"work_schedule_type","value":""},{"disabled":true,"description":{"content":"<p>string: 'zero-hours','min-max'</p>\n","type":"text/plain"},"key":"contract_type","value":""},{"disabled":true,"description":{"content":"<p>string: start_date</p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>string: end_date</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>number</p>\n","type":"text/plain"},"key":"has_salary","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"has_payroll_tax_reduction","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"is_including_holiday_allowance","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_in_period","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_employee","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_employment","value":""},{"disabled":true,"key":"inactive_employment","value":""},{"disabled":true,"description":{"content":"<p>integer, The Department ID from the departments resource</p>\n","type":"text/plain"},"key":"department_id","value":""},{"disabled":true,"key":"future","value":""},{"disabled":true,"description":{"content":"<p>integer: Label the employee is related to</p>\n","type":"text/plain"},"key":"label_id","value":""},{"disabled":true,"key":"payroll","value":""}],"variable":[]}},"response":[{"id":"b3d7d85e-6592-474f-88eb-149d067bae50","name":"Retrieve salary","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/salaries?employee_id=&employment_id=&work_schedule_type=&contract_type=&start_date=&end_date=&has_salary=&has_payroll_tax_reduction=&is_including_holiday_allowance=&active=&active_in_period=&active_employee=&active_employment=&inactive_employment=&department_id=&future=&label_id=&payroll=","host":["https://api.buddee.nl"],"path":["salaries"],"query":[{"key":"employee_id","value":"","description":"integer: The Employee ID this position is assigned to, see employees resource"},{"key":"employment_id","value":"","description":"integer: The  Related employment ID from the employment resource this position relates to"},{"key":"work_schedule_type","value":"","description":"string: 'full-time','part-time','on-call'"},{"key":"contract_type","value":"","description":"string: 'zero-hours','min-max'"},{"key":"start_date","value":"","description":"string: start_date"},{"key":"end_date","value":"","description":"string: end_date"},{"key":"has_salary","value":"","description":"number"},{"key":"has_payroll_tax_reduction","value":"","description":"boolean"},{"key":"is_including_holiday_allowance","value":"","description":"boolean"},{"key":"active","value":"","description":"boolean"},{"key":"active_in_period","value":"","description":"boolean"},{"key":"active_employee","value":"","description":"boolean"},{"key":"active_employment","value":"","description":"boolean"},{"key":"inactive_employment","value":""},{"key":"department_id","value":"","description":"integer, The Department ID from the departments resource"},{"key":"future","value":""},{"key":"label_id","value":"","description":"integer: Label the employee is related to"},{"key":"payroll","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 15:00:32 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 26,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 103705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 171099,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": null,\n            \"parttime_salary\": null,\n            \"hourly_wage\": null,\n            \"start_date\": \"2021-03-01\",\n            \"end_date\": null,\n            \"has_salary\": false,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:10:56\",\n            \"updated_at\": \"2023-10-02 14:24:19\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 103706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 3,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"1800.00\",\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2020-01-01\",\n            \"end_date\": \"2022-12-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:10:56\",\n            \"updated_at\": \"2022-10-24 13:39:30\",\n            \"processable\": {\n                \"id\": 177289,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 103706,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 103811,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"1894.74\",\n            \"hourly_wage\": \"18.22\",\n            \"start_date\": \"2019-01-01\",\n            \"end_date\": \"2022-01-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:11:29\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 177305,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 103811,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 103848,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"63.16\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"2500.00\",\n            \"parttime_salary\": \"1500.00\",\n            \"hourly_wage\": \"14.42\",\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": \"2021-03-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:11:43\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 177309,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 103848,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.63\n        },\n        {\n            \"id\": 104057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"employment_id\": 171098,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:12:47\",\n            \"updated_at\": \"2021-11-12 08:45:52\",\n            \"processable\": {\n                \"id\": 177350,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104057,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 104257,\n            \"organization_id\": 14799,\n            \"employee_id\": 138753,\n            \"employment_id\": 171101,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": null,\n            \"parttime_salary\": null,\n            \"hourly_wage\": null,\n            \"start_date\": \"2020-01-01\",\n            \"end_date\": null,\n            \"has_salary\": false,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:14:07\",\n            \"updated_at\": \"2021-11-06 23:14:07\",\n            \"processable\": {\n                \"id\": 177484,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104257,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 104734,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"36.00\",\n            \"parttime_percentage\": \"94.74\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": \"3600.00\",\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2021-04-01\",\n            \"end_date\": \"2021-12-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-25 15:53:41\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 177732,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104734,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.95\n        },\n        {\n            \"id\": 104735,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"38.00\",\n            \"parttime_percentage\": \"100.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4500.00\",\n            \"parttime_salary\": \"4275.00\",\n            \"hourly_wage\": \"25.96\",\n            \"start_date\": \"2022-01-01\",\n            \"end_date\": \"2022-05-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-25 15:53:59\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 183106,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104735,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-11-09 11:49:48\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 105066,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3500.00\",\n            \"parttime_salary\": \"2800.00\",\n            \"hourly_wage\": \"20.19\",\n            \"start_date\": \"2022-02-01\",\n            \"end_date\": \"2022-02-28\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-02-01 16:51:24\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 177890,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 105066,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 105093,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2022-03-01\",\n            \"end_date\": \"2022-05-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-02-08 14:44:27\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 177901,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 105093,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 106276,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2022-06-01\",\n            \"end_date\": \"2022-08-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-06-07 12:48:17\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 183134,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 106276,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-09 11:53:45\",\n                \"updated_at\": \"2022-11-09 11:53:45\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 106338,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"24.29\",\n            \"start_date\": \"2022-06-01\",\n            \"end_date\": \"2023-01-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-06-16 14:20:42\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 183138,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 106338,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-11-09 11:53:57\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 107808,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2023-01-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-10-24 13:39:30\",\n            \"updated_at\": \"2022-10-24 13:39:30\",\n            \"processable\": {\n                \"id\": 189041,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 107808,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-02-14 12:21:31\",\n                \"updated_at\": \"2023-02-14 12:21:31\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 108625,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 3,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2022-09-01\",\n            \"end_date\": \"2022-12-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-11-24 13:46:41\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 194811,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 108625,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:27:09\",\n                \"updated_at\": \"2023-06-21 07:27:09\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 108896,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"6000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"34.62\",\n            \"start_date\": \"2023-01-01\",\n            \"end_date\": \"2023-03-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-12-12 14:11:58\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 188702,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 108896,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-02-03 09:14:37\",\n                \"updated_at\": \"2023-02-10 12:32:49\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 110398,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4500.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"27.33\",\n            \"start_date\": \"2023-02-01\",\n            \"end_date\": \"2023-07-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-01-26 10:12:16\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 190124,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 110398,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-03-02 10:24:24\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 111869,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"6000.00\",\n            \"parttime_salary\": \"4800.00\",\n            \"hourly_wage\": \"34.62\",\n            \"start_date\": \"2023-04-01\",\n            \"end_date\": \"2023-07-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-03-31 12:19:30\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 191222,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 111869,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-04-03 09:39:24\",\n                \"updated_at\": \"2023-06-26 12:27:54\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 113555,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 178679,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2021-12-20\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-06-19 10:49:48\",\n            \"updated_at\": \"2023-10-02 14:24:19\",\n            \"processable\": {\n                \"id\": 194783,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 113555,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:25:13\",\n                \"updated_at\": \"2023-06-21 07:25:13\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 114102,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"2210.40\",\n            \"hourly_wage\": \"18.22\",\n            \"start_date\": \"2023-08-01\",\n            \"end_date\": \"2024-06-30\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-07-11 12:45:48\",\n            \"updated_at\": \"2024-07-02 09:03:03\",\n            \"processable\": {\n                \"id\": 200338,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 114102,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-09-08 12:51:42\",\n                \"updated_at\": \"2024-06-03 09:36:19\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        },\n        {\n            \"id\": 114954,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2023-08-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": true,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-08-25 08:46:26\",\n            \"updated_at\": \"2024-09-26 09:51:11\",\n            \"processable\": {\n                \"id\": 200130,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 114954,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-08-29 10:36:35\",\n                \"updated_at\": \"2024-10-03 10:00:45\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 115525,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"employment_id\": 179339,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2020-07-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-09-12 09:37:39\",\n            \"updated_at\": \"2023-10-02 14:24:45\",\n            \"processable\": {\n                \"id\": 200990,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 115525,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-09-18 09:28:21\",\n                \"updated_at\": \"2023-09-18 09:28:21\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 120883,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"employment_id\": 183258,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3500.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"20.19\",\n            \"start_date\": \"2023-12-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": true,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-12-18 09:29:56\",\n            \"updated_at\": \"2023-12-18 09:29:56\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 133196,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 179338,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 3,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2021-07-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-06-28 11:04:33\",\n            \"updated_at\": \"2024-06-28 11:04:33\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 133413,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3300.00\",\n            \"parttime_salary\": \"2431.44\",\n            \"hourly_wage\": \"20.04\",\n            \"start_date\": \"2024-07-01\",\n            \"end_date\": \"2024-07-23\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-07-02 09:03:03\",\n            \"updated_at\": \"2024-07-24 07:49:46\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        },\n        {\n            \"id\": 134434,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3400.00\",\n            \"parttime_salary\": \"2505.12\",\n            \"hourly_wage\": \"20.65\",\n            \"start_date\": \"2024-07-24\",\n            \"end_date\": \"2024-07-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-07-24 07:49:46\",\n            \"updated_at\": \"2024-07-24 07:51:14\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        },\n        {\n            \"id\": 134435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3400.00\",\n            \"parttime_salary\": \"2505.12\",\n            \"hourly_wage\": \"20.65\",\n            \"start_date\": \"2024-08-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-07-24 07:51:14\",\n            \"updated_at\": \"2024-07-24 07:51:14\",\n            \"processable\": {\n                \"id\": 263017,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 134435,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2024-08-05 11:53:46\",\n                \"updated_at\": \"2024-08-05 11:53:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        }\n    ]\n}"}],"_postman_id":"7e20fd47-e598-4e09-b8dd-53ab6e3a588f"},{"name":"EmployeeTaxSetting","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"bc8d619d-3394-49ff-b595-ce7958177f22"}}],"id":"966e795f-dacc-4cbd-ac72-2b87180ac47b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/salaries","description":"<h3 id=\"retrieve-all-salaries\">Retrieve all salaries</h3>\n","urlObject":{"path":["salaries"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>integer: The Employee ID this position is assigned to, see employees resource</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>integer: The  Related employment ID from the employment resource this position relates to</p>\n","type":"text/plain"},"key":"employment_id","value":""},{"disabled":true,"description":{"content":"<p>string: 'full-time','part-time','on-call'</p>\n","type":"text/plain"},"key":"work_schedule_type","value":""},{"disabled":true,"description":{"content":"<p>string: 'zero-hours','min-max'</p>\n","type":"text/plain"},"key":"contract_type","value":""},{"disabled":true,"description":{"content":"<p>string: start_date</p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>string: end_date</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>number</p>\n","type":"text/plain"},"key":"has_salary","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"has_payroll_tax_reduction","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"is_including_holiday_allowance","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_in_period","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_employee","value":""},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_employment","value":""},{"disabled":true,"key":"inactive_employment","value":""},{"disabled":true,"description":{"content":"<p>integer, The Department ID from the departments resource</p>\n","type":"text/plain"},"key":"department_id","value":""},{"disabled":true,"key":"future","value":""},{"disabled":true,"description":{"content":"<p>integer: Label the employee is related to</p>\n","type":"text/plain"},"key":"label_id","value":""},{"disabled":true,"key":"payroll","value":""}],"variable":[]}},"response":[{"id":"9ae4d4ba-247b-407b-93ce-243404d1e64b","name":"Retrieve salary","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/salaries?employee_id=&employment_id=&work_schedule_type=&contract_type=&start_date=&end_date=&has_salary=&has_payroll_tax_reduction=&is_including_holiday_allowance=&active=&active_in_period=&active_employee=&active_employment=&inactive_employment=&department_id=&future=&label_id=&payroll=","host":["https://api.buddee.nl"],"path":["salaries"],"query":[{"key":"employee_id","value":"","description":"integer: The Employee ID this position is assigned to, see employees resource"},{"key":"employment_id","value":"","description":"integer: The  Related employment ID from the employment resource this position relates to"},{"key":"work_schedule_type","value":"","description":"string: 'full-time','part-time','on-call'"},{"key":"contract_type","value":"","description":"string: 'zero-hours','min-max'"},{"key":"start_date","value":"","description":"string: start_date"},{"key":"end_date","value":"","description":"string: end_date"},{"key":"has_salary","value":"","description":"number"},{"key":"has_payroll_tax_reduction","value":"","description":"boolean"},{"key":"is_including_holiday_allowance","value":"","description":"boolean"},{"key":"active","value":"","description":"boolean"},{"key":"active_in_period","value":"","description":"boolean"},{"key":"active_employee","value":"","description":"boolean"},{"key":"active_employment","value":"","description":"boolean"},{"key":"inactive_employment","value":""},{"key":"department_id","value":"","description":"integer, The Department ID from the departments resource"},{"key":"future","value":""},{"key":"label_id","value":"","description":"integer: Label the employee is related to"},{"key":"payroll","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 15:00:32 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 26,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 103705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 171099,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": null,\n            \"parttime_salary\": null,\n            \"hourly_wage\": null,\n            \"start_date\": \"2021-03-01\",\n            \"end_date\": null,\n            \"has_salary\": false,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:10:56\",\n            \"updated_at\": \"2023-10-02 14:24:19\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 103706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 3,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"1800.00\",\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2020-01-01\",\n            \"end_date\": \"2022-12-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:10:56\",\n            \"updated_at\": \"2022-10-24 13:39:30\",\n            \"processable\": {\n                \"id\": 177289,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 103706,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 103811,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"1894.74\",\n            \"hourly_wage\": \"18.22\",\n            \"start_date\": \"2019-01-01\",\n            \"end_date\": \"2022-01-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:11:29\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 177305,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 103811,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 103848,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"63.16\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"2500.00\",\n            \"parttime_salary\": \"1500.00\",\n            \"hourly_wage\": \"14.42\",\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": \"2021-03-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:11:43\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 177309,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 103848,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.63\n        },\n        {\n            \"id\": 104057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"employment_id\": 171098,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2021-01-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:12:47\",\n            \"updated_at\": \"2021-11-12 08:45:52\",\n            \"processable\": {\n                \"id\": 177350,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104057,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 104257,\n            \"organization_id\": 14799,\n            \"employee_id\": 138753,\n            \"employment_id\": 171101,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": null,\n            \"parttime_salary\": null,\n            \"hourly_wage\": null,\n            \"start_date\": \"2020-01-01\",\n            \"end_date\": null,\n            \"has_salary\": false,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-06 23:14:07\",\n            \"updated_at\": \"2021-11-06 23:14:07\",\n            \"processable\": {\n                \"id\": 177484,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104257,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 104734,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"36.00\",\n            \"parttime_percentage\": \"94.74\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": \"3600.00\",\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2021-04-01\",\n            \"end_date\": \"2021-12-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-25 15:53:41\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 177732,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104734,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.95\n        },\n        {\n            \"id\": 104735,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"38.00\",\n            \"parttime_percentage\": \"100.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4500.00\",\n            \"parttime_salary\": \"4275.00\",\n            \"hourly_wage\": \"25.96\",\n            \"start_date\": \"2022-01-01\",\n            \"end_date\": \"2022-05-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2021-11-25 15:53:59\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 183106,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 104735,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-11-09 11:49:48\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 105066,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3500.00\",\n            \"parttime_salary\": \"2800.00\",\n            \"hourly_wage\": \"20.19\",\n            \"start_date\": \"2022-02-01\",\n            \"end_date\": \"2022-02-28\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-02-01 16:51:24\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 177890,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 105066,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 105093,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2022-03-01\",\n            \"end_date\": \"2022-05-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-02-08 14:44:27\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 177901,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 105093,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-09-11 07:38:12\",\n                \"updated_at\": \"2022-09-11 07:38:12\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 106276,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2022-06-01\",\n            \"end_date\": \"2022-08-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-06-07 12:48:17\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 183134,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 106276,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2022-11-09 11:53:45\",\n                \"updated_at\": \"2022-11-09 11:53:45\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 106338,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"24.29\",\n            \"start_date\": \"2022-06-01\",\n            \"end_date\": \"2023-01-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-06-16 14:20:42\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 183138,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 106338,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2022-11-09 11:53:57\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 107808,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"employment_id\": 171100,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2023-01-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-10-24 13:39:30\",\n            \"updated_at\": \"2022-10-24 13:39:30\",\n            \"processable\": {\n                \"id\": 189041,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 107808,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-02-14 12:21:31\",\n                \"updated_at\": \"2023-02-14 12:21:31\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 108625,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 3,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2022-09-01\",\n            \"end_date\": \"2022-12-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-11-24 13:46:41\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 194811,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 108625,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:27:09\",\n                \"updated_at\": \"2023-06-21 07:27:09\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 108896,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"6000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"34.62\",\n            \"start_date\": \"2023-01-01\",\n            \"end_date\": \"2023-03-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2022-12-12 14:11:58\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 188702,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 108896,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-02-03 09:14:37\",\n                \"updated_at\": \"2023-02-10 12:32:49\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 110398,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4500.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"27.33\",\n            \"start_date\": \"2023-02-01\",\n            \"end_date\": \"2023-07-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-01-26 10:12:16\",\n            \"updated_at\": \"2023-10-02 14:19:52\",\n            \"processable\": {\n                \"id\": 190124,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 110398,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-03-02 10:24:24\",\n                \"updated_at\": \"2023-07-11 12:45:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 111869,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"32.00\",\n            \"parttime_percentage\": \"80.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"6000.00\",\n            \"parttime_salary\": \"4800.00\",\n            \"hourly_wage\": \"34.62\",\n            \"start_date\": \"2023-04-01\",\n            \"end_date\": \"2023-07-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-03-31 12:19:30\",\n            \"updated_at\": \"2023-10-02 14:19:26\",\n            \"processable\": {\n                \"id\": 191222,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 111869,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-04-03 09:39:24\",\n                \"updated_at\": \"2023-06-26 12:27:54\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.8\n        },\n        {\n            \"id\": 113555,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 178679,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2021-12-20\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-06-19 10:49:48\",\n            \"updated_at\": \"2023-10-02 14:24:19\",\n            \"processable\": {\n                \"id\": 194783,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 113555,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:25:13\",\n                \"updated_at\": \"2023-06-21 07:25:13\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 114102,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": \"2210.40\",\n            \"hourly_wage\": \"18.22\",\n            \"start_date\": \"2023-08-01\",\n            \"end_date\": \"2024-06-30\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-07-11 12:45:48\",\n            \"updated_at\": \"2024-07-02 09:03:03\",\n            \"processable\": {\n                \"id\": 200338,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 114102,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-09-08 12:51:42\",\n                \"updated_at\": \"2024-06-03 09:36:19\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        },\n        {\n            \"id\": 114954,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"employment_id\": 171095,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2023-08-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": true,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-08-25 08:46:26\",\n            \"updated_at\": \"2024-09-26 09:51:11\",\n            \"processable\": {\n                \"id\": 200130,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 114954,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-08-29 10:36:35\",\n                \"updated_at\": \"2024-10-03 10:00:45\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 115525,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"employment_id\": 179339,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3000.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"17.31\",\n            \"start_date\": \"2020-07-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-09-12 09:37:39\",\n            \"updated_at\": \"2023-10-02 14:24:45\",\n            \"processable\": {\n                \"id\": 200990,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 115525,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-09-18 09:28:21\",\n                \"updated_at\": \"2023-09-18 09:28:21\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 120883,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"employment_id\": 183258,\n            \"work_schedule_type\": \"full-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": null,\n            \"parttime_percentage\": null,\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 5,\n            \"fulltime_salary\": \"3500.00\",\n            \"parttime_salary\": null,\n            \"hourly_wage\": \"20.19\",\n            \"start_date\": \"2023-12-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": true,\n            \"holiday_allowance_payout_method\": null,\n            \"holiday_allowance_payout_month\": null,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2023-12-18 09:29:56\",\n            \"updated_at\": \"2023-12-18 09:29:56\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 1\n        },\n        {\n            \"id\": 133196,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"employment_id\": 179338,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"40.00\",\n            \"parttime_hours\": \"24.00\",\n            \"parttime_percentage\": \"60.00\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 3,\n            \"fulltime_salary\": \"4000.00\",\n            \"parttime_salary\": \"2400.00\",\n            \"hourly_wage\": \"23.08\",\n            \"start_date\": \"2021-07-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": false,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-06-28 11:04:33\",\n            \"updated_at\": \"2024-06-28 11:04:33\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.6\n        },\n        {\n            \"id\": 133413,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3300.00\",\n            \"parttime_salary\": \"2431.44\",\n            \"hourly_wage\": \"20.04\",\n            \"start_date\": \"2024-07-01\",\n            \"end_date\": \"2024-07-23\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-07-02 09:03:03\",\n            \"updated_at\": \"2024-07-24 07:49:46\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        },\n        {\n            \"id\": 134434,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3400.00\",\n            \"parttime_salary\": \"2505.12\",\n            \"hourly_wage\": \"20.65\",\n            \"start_date\": \"2024-07-24\",\n            \"end_date\": \"2024-07-31\",\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-07-24 07:49:46\",\n            \"updated_at\": \"2024-07-24 07:51:14\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        },\n        {\n            \"id\": 134435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"employment_id\": 171096,\n            \"work_schedule_type\": \"part-time\",\n            \"contract_type\": null,\n            \"fulltime_hours\": \"38.00\",\n            \"parttime_hours\": \"28.00\",\n            \"parttime_percentage\": \"73.68\",\n            \"min_hours\": null,\n            \"max_hours\": null,\n            \"days\": 4,\n            \"fulltime_salary\": \"3400.00\",\n            \"parttime_salary\": \"2505.12\",\n            \"hourly_wage\": \"20.65\",\n            \"start_date\": \"2024-08-01\",\n            \"end_date\": null,\n            \"has_salary\": true,\n            \"has_payroll_tax_reduction\": true,\n            \"is_including_holiday_allowance\": false,\n            \"holiday_allowance_payout_method\": \"monthly_accrual\",\n            \"holiday_allowance_payout_month\": 5,\n            \"nmbrs_special_tax_table\": null,\n            \"nmbrs_income_related_contribution_zvw\": null,\n            \"nmbrs_is_obliged_on_call\": null,\n            \"created_at\": \"2024-07-24 07:51:14\",\n            \"updated_at\": \"2024-07-24 07:51:14\",\n            \"processable\": {\n                \"id\": 263017,\n                \"organization_id\": 14799,\n                \"entity_type\": \"salary\",\n                \"entity_id\": 134435,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2024-08-05 11:53:46\",\n                \"updated_at\": \"2024-08-05 11:53:48\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ],\n            \"currency_code\": \"EUR\",\n            \"fte\": 0.74\n        }\n    ]\n}"}],"_postman_id":"966e795f-dacc-4cbd-ac72-2b87180ac47b"},{"name":"Create a new salary","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"26f0fbfc-bb6e-4cd4-8790-9dc2a4d9b7c6"}}],"id":"f5c40b6f-1c6e-4d47-8718-0b8bec4a5925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"start_date\": \"2024-12-02\",\n    \"work_schedule_type\": \"full-time\",\n    \"days\": \"4\",\n    \"has_salary\": \"1\",\n    \"fulltime_salary\": \"3500\",\n    \"has_payroll_tax_reduction\": \"1\",\n    \"is_including_holiday_allowance\": \"1\",\n    \"employment_id\": \"194469\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/salaries","description":"<p>Create a salary</p>\n","urlObject":{"path":["salaries"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"795d69bc-52e1-4823-8bc1-0d48c0f0729c","name":"Create a new salary","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"start_date\": \"2024-12-02\",\n    \"work_schedule_type\": \"full-time\",\n    \"days\": \"4\",\n    \"has_salary\": \"1\",\n    \"fulltime_salary\": \"3500\",\n    \"has_payroll_tax_reduction\": \"1\",\n    \"is_including_holiday_allowance\": \"1\",\n    \"employment_id\": \"194469\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/salaries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 15:41:10 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 141674,\n        \"organization_id\": 14799,\n        \"employee_id\": 163468,\n        \"employment_id\": 194469,\n        \"work_schedule_type\": \"full-time\",\n        \"contract_type\": null,\n        \"fulltime_hours\": \"40.00\",\n        \"parttime_hours\": null,\n        \"parttime_percentage\": null,\n        \"min_hours\": null,\n        \"max_hours\": null,\n        \"days\": 4,\n        \"fulltime_salary\": \"3500.00\",\n        \"parttime_salary\": null,\n        \"hourly_wage\": \"20.19\",\n        \"start_date\": \"2024-12-02\",\n        \"end_date\": null,\n        \"has_salary\": true,\n        \"has_payroll_tax_reduction\": true,\n        \"is_including_holiday_allowance\": true,\n        \"holiday_allowance_payout_method\": null,\n        \"holiday_allowance_payout_month\": null,\n        \"nmbrs_special_tax_table\": false,\n        \"nmbrs_income_related_contribution_zvw\": 1,\n        \"nmbrs_is_obliged_on_call\": false,\n        \"created_at\": \"2024-12-04 15:41:10\",\n        \"updated_at\": \"2024-12-04 15:41:10\",\n        \"processable\": null,\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ],\n        \"currency_code\": \"EUR\",\n        \"fte\": 1\n    }\n}"}],"_postman_id":"f5c40b6f-1c6e-4d47-8718-0b8bec4a5925"},{"name":"Update salaries","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"56614eec-5707-4e2b-b219-9997236c712e"}}],"id":"6539efe0-f980-4d15-ba4d-fe4cc14a4973","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"notes\": \"Notes..\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/salaries/153833","urlObject":{"path":["salaries","153833"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"0a9a36b6-9a14-4a93-a11f-c480d4229556","name":"Update salary","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"fulltime_salary\": \"2500\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/salaries/141674"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 04 Dec 2024 15:41:52 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 141674,\n        \"organization_id\": 14799,\n        \"employee_id\": 163468,\n        \"employment_id\": 194469,\n        \"work_schedule_type\": \"full-time\",\n        \"contract_type\": null,\n        \"fulltime_hours\": \"40.00\",\n        \"parttime_hours\": null,\n        \"parttime_percentage\": null,\n        \"min_hours\": null,\n        \"max_hours\": null,\n        \"days\": 4,\n        \"fulltime_salary\": \"2500.00\",\n        \"parttime_salary\": null,\n        \"hourly_wage\": \"14.42\",\n        \"start_date\": \"2024-12-02\",\n        \"end_date\": null,\n        \"has_salary\": true,\n        \"has_payroll_tax_reduction\": true,\n        \"is_including_holiday_allowance\": true,\n        \"holiday_allowance_payout_method\": null,\n        \"holiday_allowance_payout_month\": null,\n        \"nmbrs_special_tax_table\": false,\n        \"nmbrs_income_related_contribution_zvw\": 1,\n        \"nmbrs_is_obliged_on_call\": false,\n        \"created_at\": \"2024-12-04 15:41:10\",\n        \"updated_at\": \"2024-12-04 15:41:52\",\n        \"processable\": null,\n        \"employment\": {\n            \"id\": 194469,\n            \"organization_id\": 14799,\n            \"employee_id\": 163468,\n            \"type\": \"employee\",\n            \"start_date\": \"2024-12-01\",\n            \"end_date\": null,\n            \"created_at\": \"2024-12-03 10:43:06\",\n            \"updated_at\": \"2024-12-03 12:59:35\",\n            \"employee\": {\n                \"id\": 163468,\n                \"organization_id\": 14799,\n                \"company_id\": 15846,\n                \"job_id\": 200535,\n                \"department_id\": 154740,\n                \"location_id\": 196773,\n                \"buddy_id\": null,\n                \"manager_id\": 138752,\n                \"indirect_manager_id\": null,\n                \"hr_manager_id\": null,\n                \"cost_center_id\": null,\n                \"cost_unit_id\": null,\n                \"first_name\": \"John\",\n                \"initials\": null,\n                \"last_name\": \"Doe\",\n                \"last_name_prefix\": null,\n                \"last_name_composition\": \"own_name\",\n                \"composed_last_name\": \"Doe\",\n                \"composed_last_name_prefix\": null,\n                \"full_name\": \"John Doe\",\n                \"full_name_alt\": \"Doe, John\",\n                \"gender\": null,\n                \"number\": null,\n                \"exact_employee_number\": null,\n                \"nationality\": null,\n                \"national_id\": null,\n                \"birth_place\": null,\n                \"birth_date\": null,\n                \"marital_status\": null,\n                \"marital_date\": null,\n                \"partner_last_name\": null,\n                \"partner_last_name_prefix\": null,\n                \"work_email\": null,\n                \"work_phone\": null,\n                \"work_phone_extension\": null,\n                \"work_mobile\": null,\n                \"personal_email\": null,\n                \"personal_phone\": null,\n                \"personal_mobile\": null,\n                \"street\": null,\n                \"street_number\": null,\n                \"street_number_suffix\": null,\n                \"postal_code\": null,\n                \"city\": null,\n                \"country\": null,\n                \"bank_account_holder\": null,\n                \"bank_account_iban\": null,\n                \"emergency_contact_name\": null,\n                \"emergency_contact_relation\": null,\n                \"emergency_contact_email\": null,\n                \"emergency_contact_phone\": null,\n                \"hire_date\": null,\n                \"employment_date\": \"2024-01-01\",\n                \"first_day_at_work_date\": \"2024-01-01\",\n                \"seniority_date\": \"2024-01-01\",\n                \"archived_at\": null,\n                \"created_at\": \"2024-12-02 12:40:04\",\n                \"updated_at\": \"2024-12-04 10:47:42\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"invite\",\n                    \"read\",\n                    \"read.full\",\n                    \"update\",\n                    \"approvals.read\",\n                    \"approvals.update\",\n                    \"assets.create\",\n                    \"assets.delete\",\n                    \"assets.read\",\n                    \"assets.read.unassigned\",\n                    \"assets.update\",\n                    \"company_bikes.create\",\n                    \"company_bikes.delete\",\n                    \"company_bikes.read\",\n                    \"company_bikes.update\",\n                    \"company_cars.create\",\n                    \"company_cars.delete\",\n                    \"company_cars.read\",\n                    \"company_cars.update\",\n                    \"contracts.create\",\n                    \"contracts.delete\",\n                    \"contracts.read\",\n                    \"contracts.update\",\n                    \"documents.attribute.is_shared_with_all\",\n                    \"documents.attribute.is_shared_with_employee\",\n                    \"documents.create\",\n                    \"documents.delete\",\n                    \"documents.read\",\n                    \"documents.read.unassigned\",\n                    \"documents.update\",\n                    \"employee_attributes.create\",\n                    \"employee_attributes.delete\",\n                    \"employee_attributes.read\",\n                    \"employee_attributes.update\",\n                    \"employee_change_requests.create\",\n                    \"employee_change_requests.delete\",\n                    \"employee_change_requests.merge\",\n                    \"employee_change_requests.read\",\n                    \"employee_change_requests.update\",\n                    \"employee_changes.export\",\n                    \"employee_changes.read\",\n                    \"employee_course_documents.create\",\n                    \"employee_course_documents.delete\",\n                    \"employee_course_documents.read\",\n                    \"employee_courses.create\",\n                    \"employee_courses.delete\",\n                    \"employee_courses.management_settings\",\n                    \"employee_courses.read\",\n                    \"employee_courses.report\",\n                    \"employee_courses.update\",\n                    \"employee_labels.create\",\n                    \"employee_labels.delete\",\n                    \"employee_labels.read\",\n                    \"employee_labels.update\",\n                    \"employee_leave_types.delete\",\n                    \"employee_leave_types.read\",\n                    \"employee_leave_types.report\",\n                    \"employee_leave_types.update\",\n                    \"employee_notes.create\",\n                    \"employee_notes.delete\",\n                    \"employee_notes.read\",\n                    \"employee_notes.update\",\n                    \"employee_payroll_settings.read\",\n                    \"employee_payroll_settings.update\",\n                    \"employee_pictures.create\",\n                    \"employee_pictures.delete\",\n                    \"employee_pictures.read\",\n                    \"employee_projects.create\",\n                    \"employee_projects.delete\",\n                    \"employee_projects.read\",\n                    \"employee_projects.update\",\n                    \"employee_settings.management_settings\",\n                    \"employee_settings.read\",\n                    \"employee_settings.update\",\n                    \"employee_skills.create\",\n                    \"employee_skills.delete\",\n                    \"employee_skills.read\",\n                    \"employee_skills.report\",\n                    \"employee_skills.update\",\n                    \"employments.create\",\n                    \"employments.delete\",\n                    \"employments.read\",\n                    \"employments.update\",\n                    \"expense_documents.create\",\n                    \"expense_documents.delete\",\n                    \"expense_documents.read\",\n                    \"expense_items.create\",\n                    \"expense_items.delete\",\n                    \"expense_items.read\",\n                    \"expense_items.update\",\n                    \"expenses.attribute.is_processed\",\n                    \"expenses.create\",\n                    \"expenses.delete\",\n                    \"expenses.read\",\n                    \"expenses.report\",\n                    \"expenses.update\",\n                    \"family_members.create\",\n                    \"family_members.delete\",\n                    \"family_members.read\",\n                    \"family_members.update\",\n                    \"form_answers.read\",\n                    \"form_answers.update\",\n                    \"form_documents.create\",\n                    \"form_documents.delete\",\n                    \"form_documents.read\",\n                    \"form_viewers.create\",\n                    \"form_viewers.delete\",\n                    \"form_viewers.read\",\n                    \"forms.create\",\n                    \"forms.delete\",\n                    \"forms.management_settings\",\n                    \"forms.read\",\n                    \"forms.update\",\n                    \"goals.create\",\n                    \"goals.delete\",\n                    \"goals.read\",\n                    \"goals.report\",\n                    \"goals.update\",\n                    \"leave_balance_adjustments.create\",\n                    \"leave_balance_adjustments.delete\",\n                    \"leave_balance_adjustments.read\",\n                    \"leave_balance_adjustments.update\",\n                    \"leave_balance_prorations.read\",\n                    \"leave_balances.create\",\n                    \"leave_balances.delete\",\n                    \"leave_balances.read\",\n                    \"leave_balances.report\",\n                    \"leave_balances.update\",\n                    \"leave_registrations.create\",\n                    \"leave_registrations.delete\",\n                    \"leave_registrations.read\",\n                    \"leave_registrations.update\",\n                    \"leave_requests.create\",\n                    \"leave_requests.delete\",\n                    \"leave_requests.read\",\n                    \"leave_requests.update\",\n                    \"leave_schemes.create\",\n                    \"leave_schemes.delete\",\n                    \"leave_schemes.read\",\n                    \"leave_schemes.update\",\n                    \"payroll_documents.create\",\n                    \"payroll_documents.delete\",\n                    \"payroll_documents.read\",\n                    \"payroll_documents.read.unassigned\",\n                    \"payroll_documents.update\",\n                    \"positions.create\",\n                    \"positions.delete\",\n                    \"positions.read\",\n                    \"positions.update\",\n                    \"salaries.create\",\n                    \"salaries.delete\",\n                    \"salaries.read\",\n                    \"salaries.report\",\n                    \"salaries.update\",\n                    \"sick_leave_registrations.attribute.do_auto_calculate\",\n                    \"sick_leave_registrations.attribute.is_verified\",\n                    \"sick_leave_registrations.create\",\n                    \"sick_leave_registrations.delete\",\n                    \"sick_leave_registrations.read\",\n                    \"sick_leave_registrations.report\",\n                    \"sick_leave_registrations.update\",\n                    \"tasks.create\",\n                    \"tasks.delete\",\n                    \"tasks.read\",\n                    \"tasks.read.unassigned\",\n                    \"tasks.update\",\n                    \"template_concepts.create\",\n                    \"template_concepts.delete\",\n                    \"template_concepts.read\",\n                    \"template_concepts.update\",\n                    \"terminations.create\",\n                    \"terminations.delete\",\n                    \"terminations.read\",\n                    \"terminations.update\",\n                    \"time_registrations.attribute.is_processed\",\n                    \"time_registrations.create\",\n                    \"time_registrations.delete\",\n                    \"time_registrations.import\",\n                    \"time_registrations.leave_balance_adjustment.create\",\n                    \"time_registrations.leave_balance_adjustment.delete\",\n                    \"time_registrations.read\",\n                    \"time_registrations.report\",\n                    \"time_registrations.update\",\n                    \"trip_registrations.attribute.is_processed\",\n                    \"trip_registrations.create\",\n                    \"trip_registrations.delete\",\n                    \"trip_registrations.import\",\n                    \"trip_registrations.read\",\n                    \"trip_registrations.report\",\n                    \"trip_registrations.update\",\n                    \"wage_components.create\",\n                    \"wage_components.delete\",\n                    \"wage_components.read\",\n                    \"wage_components.update\",\n                    \"work_location_statuses.attribute.is_processed\",\n                    \"work_location_statuses.create\",\n                    \"work_location_statuses.delete\",\n                    \"work_location_statuses.read\",\n                    \"work_location_statuses.report\",\n                    \"work_location_statuses.update\",\n                    \"work_schedules.create\",\n                    \"work_schedules.delete\",\n                    \"work_schedules.read\",\n                    \"work_schedules.update\"\n                ],\n                \"salutation\": \"Mx.\"\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        \"employee\": {\n            \"id\": 163468,\n            \"organization_id\": 14799,\n            \"company_id\": 15846,\n            \"job_id\": 200535,\n            \"department_id\": 154740,\n            \"location_id\": 196773,\n            \"buddy_id\": null,\n            \"manager_id\": 138752,\n            \"indirect_manager_id\": null,\n            \"hr_manager_id\": null,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"first_name\": \"John\",\n            \"initials\": null,\n            \"last_name\": \"Doe\",\n            \"last_name_prefix\": null,\n            \"last_name_composition\": \"own_name\",\n            \"composed_last_name\": \"Doe\",\n            \"composed_last_name_prefix\": null,\n            \"full_name\": \"John Doe\",\n            \"full_name_alt\": \"Doe, John\",\n            \"gender\": null,\n            \"number\": null,\n            \"exact_employee_number\": null,\n            \"nationality\": null,\n            \"national_id\": null,\n            \"birth_place\": null,\n            \"birth_date\": null,\n            \"marital_status\": null,\n            \"marital_date\": null,\n            \"partner_last_name\": null,\n            \"partner_last_name_prefix\": null,\n            \"work_email\": null,\n            \"work_phone\": null,\n            \"work_phone_extension\": null,\n            \"work_mobile\": null,\n            \"personal_email\": null,\n            \"personal_phone\": null,\n            \"personal_mobile\": null,\n            \"street\": null,\n            \"street_number\": null,\n            \"street_number_suffix\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"country\": null,\n            \"bank_account_holder\": null,\n            \"bank_account_iban\": null,\n            \"emergency_contact_name\": null,\n            \"emergency_contact_relation\": null,\n            \"emergency_contact_email\": null,\n            \"emergency_contact_phone\": null,\n            \"hire_date\": null,\n            \"employment_date\": \"2024-01-01\",\n            \"first_day_at_work_date\": \"2024-01-01\",\n            \"seniority_date\": \"2024-01-01\",\n            \"archived_at\": null,\n            \"created_at\": \"2024-12-02 12:40:04\",\n            \"updated_at\": \"2024-12-04 10:47:42\",\n            \"company\": {\n                \"id\": 15846,\n                \"organization_id\": 14799,\n                \"home_wage_component_type_id\": null,\n                \"office_wage_component_type_id\": null,\n                \"travel_wage_component_type_id\": null,\n                \"name\": \"Buddee Demo België\",\n                \"legal_name\": null,\n                \"legal_form\": null,\n                \"coc_number\": \"1234567\",\n                \"vat_number\": null,\n                \"payroll_tax_number\": null,\n                \"sector_code\": null,\n                \"cao_code\": null,\n                \"payroll_iban\": null,\n                \"email\": \"buddee@buddee.nl\",\n                \"admin_email\": null,\n                \"invoice_email\": null,\n                \"phone\": null,\n                \"street\": \"ijsbaanpad\",\n                \"street_number\": \"2\",\n                \"street_number_suffix\": null,\n                \"postal_code\": \"1233af\",\n                \"city\": \"Antwerpen\",\n                \"country\": \"BE\",\n                \"bank_account_holder\": null,\n                \"bank_account_iban\": null,\n                \"payment_method\": null,\n                \"created_at\": \"2023-12-18 08:20:34\",\n                \"updated_at\": \"2023-12-18 09:55:13\",\n                \"running_or_future_payroll_subscriptions\": [],\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"read.full\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"invite\",\n                \"read\",\n                \"read.full\",\n                \"update\",\n                \"approvals.read\",\n                \"approvals.update\",\n                \"assets.create\",\n                \"assets.delete\",\n                \"assets.read\",\n                \"assets.read.unassigned\",\n                \"assets.update\",\n                \"company_bikes.create\",\n                \"company_bikes.delete\",\n                \"company_bikes.read\",\n                \"company_bikes.update\",\n                \"company_cars.create\",\n                \"company_cars.delete\",\n                \"company_cars.read\",\n                \"company_cars.update\",\n                \"contracts.create\",\n                \"contracts.delete\",\n                \"contracts.read\",\n                \"contracts.update\",\n                \"documents.attribute.is_shared_with_all\",\n                \"documents.attribute.is_shared_with_employee\",\n                \"documents.create\",\n                \"documents.delete\",\n                \"documents.read\",\n                \"documents.read.unassigned\",\n                \"documents.update\",\n                \"employee_attributes.create\",\n                \"employee_attributes.delete\",\n                \"employee_attributes.read\",\n                \"employee_attributes.update\",\n                \"employee_change_requests.create\",\n                \"employee_change_requests.delete\",\n                \"employee_change_requests.merge\",\n                \"employee_change_requests.read\",\n                \"employee_change_requests.update\",\n                \"employee_changes.export\",\n                \"employee_changes.read\",\n                \"employee_course_documents.create\",\n                \"employee_course_documents.delete\",\n                \"employee_course_documents.read\",\n                \"employee_courses.create\",\n                \"employee_courses.delete\",\n                \"employee_courses.management_settings\",\n                \"employee_courses.read\",\n                \"employee_courses.report\",\n                \"employee_courses.update\",\n                \"employee_labels.create\",\n                \"employee_labels.delete\",\n                \"employee_labels.read\",\n                \"employee_labels.update\",\n                \"employee_leave_types.delete\",\n                \"employee_leave_types.read\",\n                \"employee_leave_types.report\",\n                \"employee_leave_types.update\",\n                \"employee_notes.create\",\n                \"employee_notes.delete\",\n                \"employee_notes.read\",\n                \"employee_notes.update\",\n                \"employee_payroll_settings.read\",\n                \"employee_payroll_settings.update\",\n                \"employee_pictures.create\",\n                \"employee_pictures.delete\",\n                \"employee_pictures.read\",\n                \"employee_projects.create\",\n                \"employee_projects.delete\",\n                \"employee_projects.read\",\n                \"employee_projects.update\",\n                \"employee_settings.management_settings\",\n                \"employee_settings.read\",\n                \"employee_settings.update\",\n                \"employee_skills.create\",\n                \"employee_skills.delete\",\n                \"employee_skills.read\",\n                \"employee_skills.report\",\n                \"employee_skills.update\",\n                \"employments.create\",\n                \"employments.delete\",\n                \"employments.read\",\n                \"employments.update\",\n                \"expense_documents.create\",\n                \"expense_documents.delete\",\n                \"expense_documents.read\",\n                \"expense_items.create\",\n                \"expense_items.delete\",\n                \"expense_items.read\",\n                \"expense_items.update\",\n                \"expenses.attribute.is_processed\",\n                \"expenses.create\",\n                \"expenses.delete\",\n                \"expenses.read\",\n                \"expenses.report\",\n                \"expenses.update\",\n                \"family_members.create\",\n                \"family_members.delete\",\n                \"family_members.read\",\n                \"family_members.update\",\n                \"form_answers.read\",\n                \"form_answers.update\",\n                \"form_documents.create\",\n                \"form_documents.delete\",\n                \"form_documents.read\",\n                \"form_viewers.create\",\n                \"form_viewers.delete\",\n                \"form_viewers.read\",\n                \"forms.create\",\n                \"forms.delete\",\n                \"forms.management_settings\",\n                \"forms.read\",\n                \"forms.update\",\n                \"goals.create\",\n                \"goals.delete\",\n                \"goals.read\",\n                \"goals.report\",\n                \"goals.update\",\n                \"leave_balance_adjustments.create\",\n                \"leave_balance_adjustments.delete\",\n                \"leave_balance_adjustments.read\",\n                \"leave_balance_adjustments.update\",\n                \"leave_balance_prorations.read\",\n                \"leave_balances.create\",\n                \"leave_balances.delete\",\n                \"leave_balances.read\",\n                \"leave_balances.report\",\n                \"leave_balances.update\",\n                \"leave_registrations.create\",\n                \"leave_registrations.delete\",\n                \"leave_registrations.read\",\n                \"leave_registrations.update\",\n                \"leave_requests.create\",\n                \"leave_requests.delete\",\n                \"leave_requests.read\",\n                \"leave_requests.update\",\n                \"leave_schemes.create\",\n                \"leave_schemes.delete\",\n                \"leave_schemes.read\",\n                \"leave_schemes.update\",\n                \"payroll_documents.create\",\n                \"payroll_documents.delete\",\n                \"payroll_documents.read\",\n                \"payroll_documents.read.unassigned\",\n                \"payroll_documents.update\",\n                \"positions.create\",\n                \"positions.delete\",\n                \"positions.read\",\n                \"positions.update\",\n                \"salaries.create\",\n                \"salaries.delete\",\n                \"salaries.read\",\n                \"salaries.report\",\n                \"salaries.update\",\n                \"sick_leave_registrations.attribute.do_auto_calculate\",\n                \"sick_leave_registrations.attribute.is_verified\",\n                \"sick_leave_registrations.create\",\n                \"sick_leave_registrations.delete\",\n                \"sick_leave_registrations.read\",\n                \"sick_leave_registrations.report\",\n                \"sick_leave_registrations.update\",\n                \"tasks.create\",\n                \"tasks.delete\",\n                \"tasks.read\",\n                \"tasks.read.unassigned\",\n                \"tasks.update\",\n                \"template_concepts.create\",\n                \"template_concepts.delete\",\n                \"template_concepts.read\",\n                \"template_concepts.update\",\n                \"terminations.create\",\n                \"terminations.delete\",\n                \"terminations.read\",\n                \"terminations.update\",\n                \"time_registrations.attribute.is_processed\",\n                \"time_registrations.create\",\n                \"time_registrations.delete\",\n                \"time_registrations.import\",\n                \"time_registrations.leave_balance_adjustment.create\",\n                \"time_registrations.leave_balance_adjustment.delete\",\n                \"time_registrations.read\",\n                \"time_registrations.report\",\n                \"time_registrations.update\",\n                \"trip_registrations.attribute.is_processed\",\n                \"trip_registrations.create\",\n                \"trip_registrations.delete\",\n                \"trip_registrations.import\",\n                \"trip_registrations.read\",\n                \"trip_registrations.report\",\n                \"trip_registrations.update\",\n                \"wage_components.create\",\n                \"wage_components.delete\",\n                \"wage_components.read\",\n                \"wage_components.update\",\n                \"work_location_statuses.attribute.is_processed\",\n                \"work_location_statuses.create\",\n                \"work_location_statuses.delete\",\n                \"work_location_statuses.read\",\n                \"work_location_statuses.report\",\n                \"work_location_statuses.update\",\n                \"work_schedules.create\",\n                \"work_schedules.delete\",\n                \"work_schedules.read\",\n                \"work_schedules.update\"\n            ],\n            \"salutation\": \"Mx.\"\n        },\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ],\n        \"currency_code\": \"EUR\",\n        \"fte\": 1\n    }\n}"}],"_postman_id":"6539efe0-f980-4d15-ba4d-fe4cc14a4973"}],"id":"ade2d15b-3d1a-474c-9487-961056701e26","description":"<h3 id=\"sortables\">Sortables</h3>\n<p>Use these fields in the sort query param:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sortable Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>work_schedule_type</td>\n<td>Work schedule type of the employee</td>\n</tr>\n<tr>\n<td>contract_type</td>\n<td>Type of contract</td>\n</tr>\n<tr>\n<td>fulltime_salary</td>\n<td>Full-time salary of the employee</td>\n</tr>\n<tr>\n<td>parttime_salary</td>\n<td>Part-time salary of the employee</td>\n</tr>\n<tr>\n<td>hourly_wage</td>\n<td>Hourly wage of the employee</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>Start date of the employment</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>End date of the employment</td>\n</tr>\n<tr>\n<td>has_payroll_tax_reduction</td>\n<td>Whether the employee has payroll tax reduction</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Type</th>\n<th>Description</th>\n<th>Validation Rules</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employment_id</td>\n<td><code>integer</code></td>\n<td>Employment identifier</td>\n<td><code>required</code>, <code>uneditable</code></td>\n<td>Links to the <code>Employment</code> model</td>\n</tr>\n<tr>\n<td>work_schedule_type</td>\n<td><code>string</code></td>\n<td>Type of work schedule</td>\n<td><code>required</code>, <code>full-time','part-time','on-call</code></td>\n<td></td>\n</tr>\n<tr>\n<td>contract_type</td>\n<td><code>string</code></td>\n<td>Contract type</td>\n<td><code>nullable</code>, <code>required_if:work_schedule_type,on-call</code>, <code>zero-hours','min-max</code></td>\n<td></td>\n</tr>\n<tr>\n<td>parttime_hours</td>\n<td><code>decimal</code></td>\n<td>Number of part-time hours worked</td>\n<td><code>nullable</code>, <code>required_if:work_schedule_type,part-time</code>, <code>numeric</code>, <code>between:0,45</code></td>\n<td></td>\n</tr>\n<tr>\n<td>min_hours</td>\n<td><code>decimal</code></td>\n<td>Minimum hours worked</td>\n<td><code>nullable</code>, <code>required_if:contract_type,min-max</code>, <code>numeric</code>, <code>between:0,45</code></td>\n<td></td>\n</tr>\n<tr>\n<td>max_hours</td>\n<td><code>decimal</code></td>\n<td>Maximum hours worked</td>\n<td><code>nullable</code>, <code>required_if:contract_type,min-max</code>, <code>numeric</code>, <code>between:0,80</code>, <code>gte:min_hours</code></td>\n<td></td>\n</tr>\n<tr>\n<td>days</td>\n<td><code>integer</code></td>\n<td>Number of working days</td>\n<td><code>nullable</code>, <code>required_if:work_schedule_type,full-time,part-time</code>, <code>integer</code>, <code>between:1,7</code></td>\n<td></td>\n</tr>\n<tr>\n<td>fulltime_salary</td>\n<td><code>decimal</code></td>\n<td>Full-time salary</td>\n<td><code>nullable</code>, <code>numeric</code>, <code>between:0,1000000</code></td>\n<td>Required if <code>has_salary</code> is <code>true</code></td>\n</tr>\n<tr>\n<td>parttime_salary</td>\n<td><code>decimal</code></td>\n<td>Part-time salary</td>\n<td><code>nullable</code>, <code>numeric</code>, <code>between:0,1000000</code>, <code>lte:fulltime_salary</code></td>\n<td>Required if <code>has_salary</code> is <code>true</code></td>\n</tr>\n<tr>\n<td>hourly_wage</td>\n<td><code>decimal</code></td>\n<td>Hourly wage</td>\n<td><code>nullable</code>, <code>numeric</code>, <code>between:0,10000</code></td>\n<td>Required if <code>work_schedule_type</code> is <code>on-call</code></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><code>string</code></td>\n<td>Start date of the employment</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code></td>\n<td></td>\n</tr>\n<tr>\n<td>has_salary</td>\n<td><code>boolean</code></td>\n<td>Indicates if the employee has a salary</td>\n<td><code>required</code>, <code>boolean</code></td>\n<td></td>\n</tr>\n<tr>\n<td>has_payroll_tax_reduction</td>\n<td><code>boolean</code></td>\n<td>Indicates if payroll tax reduction applies</td>\n<td><code>required</code>, <code>boolean</code></td>\n<td></td>\n</tr>\n<tr>\n<td>is_including_holiday_allowance</td>\n<td><code>boolean</code></td>\n<td>Includes holiday allowance in salary</td>\n<td><code>required</code>, <code>boolean</code></td>\n<td></td>\n</tr>\n<tr>\n<td>holiday_allowance_payout_method</td>\n<td><code>string</code></td>\n<td>Method for holiday allowance payout</td>\n<td><code>nullable</code>, <code>directly','monthly_accrual</code></td>\n<td></td>\n</tr>\n<tr>\n<td>holiday_allowance_payout_month</td>\n<td><code>string</code></td>\n<td>Month for holiday allowance payout</td>\n<td><code>nullable</code>, <code>required_if:holiday_allowance_payout_method,monthly_accrual</code>, 1-12</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ade2d15b-3d1a-474c-9487-961056701e26"},{"name":"Employees","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"9766a8dd-08ff-45ca-94fc-c7c9fae760c3"}}],"id":"77f35b4f-8ea6-4898-87e9-8045b5170f2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/employees","description":"<p>Retrieves all employees.</p>\n","urlObject":{"path":["employees"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"full_name"},{"disabled":true,"description":{"content":"<p>Filter employees by job ID.</p>\n","type":"text/plain"},"key":"job_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by location ID.</p>\n","type":"text/plain"},"key":"location_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by buddy ID.</p>\n","type":"text/plain"},"key":"buddy_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by manager ID.</p>\n","type":"text/plain"},"key":"manager_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by indirect manager ID.</p>\n","type":"text/plain"},"key":"indirect_manager_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by HR manager ID.</p>\n","type":"text/plain"},"key":"hr_manager_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by cost center ID.</p>\n","type":"text/plain"},"key":"cost_center_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by cost unit ID.</p>\n","type":"text/plain"},"key":"cost_unit_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by full name</p>\n","type":"text/plain"},"key":"full_name","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by work email address.</p>\n","type":"text/plain"},"key":"work_email","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by personal email address.</p>\n","type":"text/plain"},"key":"personal_email","value":" "},{"disabled":true,"description":{"content":"<p>Filter by active or archived employees based on the boolean value.</p>\n","type":"text/plain"},"key":"active","value":""},{"disabled":true,"description":{"content":"<p>Filter employees employed or archived within a specified date range.</p>\n","type":"text/plain"},"key":"employed_or_archived_in_period","value":""},{"disabled":true,"description":{"content":"<p>Filter employees active within a specific period.</p>\n","type":"text/plain"},"key":"active_in_period","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by archived status (true or false)\n.</p>\n","type":"text/plain"},"key":"archived","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by the duration of their contract ('temporary','permanent').</p>\n","type":"text/plain"},"key":"contract_duration","value":" :"},{"disabled":true,"description":{"content":"<p>Filter employees by the type of contract ('zero-hours','min-max'). </p>\n","type":"text/plain"},"key":"contract_type","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by the type of employment ('employee','intern','self-employed','agency_worker','dga','volunteer'). </p>\n","type":"text/plain"},"key":"employment_type","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by specific labels associated with them.</p>\n","type":"text/plain"},"key":"label_id","value":""},{"disabled":true,"description":{"content":"<p>Filter employees who have direct reports (i.e., are managers). This should be an employee_id</p>\n","type":"text/plain"},"key":"manager","value":""},{"disabled":true,"description":{"content":"<p>Apply payroll-related filters.</p>\n","type":"text/plain"},"key":"payroll","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by IDs that have specific scoped permissions.</p>\n","type":"text/plain"},"key":"scoped_permission","value":""},{"disabled":true,"description":{"content":"<p>Filter employees based on the scoped team IDs from the logged-in user's organization.</p>\n","type":"text/plain"},"key":"team","value":""},{"disabled":true,"description":{"content":"<p>Filter employees based on termination status (true or false).</p>\n","type":"text/plain"},"key":"terminated","value":""},{"disabled":true,"description":{"content":"<p>Filter employees by their work schedule type ('full-time','part-time','on-call').</p>\n","type":"text/plain"},"key":"work_schedule_type","value":""}],"variable":[]}},"response":[{"id":"acca8f5f-3d99-4409-a50e-10018e1e5722","name":"Employees","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/employees","host":["https://api.buddee.nl"],"path":["employees"],"query":[{"key":"sort","value":"full_name","description":"Set's the sort order","disabled":true},{"key":"job_id","value":"","description":"Filter employees by job ID.","disabled":true},{"key":"department_id","value":"","description":"Filter employees by department ID.","disabled":true},{"key":"location_id","value":"","description":"Filter employees by location ID.","disabled":true},{"key":"buddy_id","value":"","description":"Filter employees by buddy ID.","disabled":true},{"key":"manager_id","value":"","description":"Filter employees by manager ID.","disabled":true},{"key":"indirect_manager_id","value":"","description":"Filter employees by indirect manager ID.","disabled":true},{"key":"hr_manager_id","value":"","description":"Filter employees by HR manager ID.","disabled":true},{"key":"cost_center_id","value":"","description":"Filter employees by cost center ID.","disabled":true},{"key":"cost_unit_id","value":"","description":"Filter employees by cost unit ID.","disabled":true},{"key":"full_name","value":"","description":"Filter employees by full name","disabled":true},{"key":"work_email","value":"","description":"Filter employees by work email address.","disabled":true},{"key":"personal_email","value":" ","description":"Filter employees by personal email address.","disabled":true},{"key":"active","value":"","description":"Filter by active or archived employees based on the boolean value.","disabled":true},{"key":"employed_or_archived_in_period","value":"","description":"Filter employees employed or archived within a specified date range.","disabled":true},{"key":"active_in_period","value":"","description":"Filter employees active within a specific period.","disabled":true},{"key":"archived","value":"","description":"Filter employees by archived status (true or false)\n.","disabled":true},{"key":"contract_duration","value":" :","description":"Filter employees by the duration of their contract ('temporary','permanent').","disabled":true},{"key":"contract_type","value":"","description":"Filter employees by the type of contract ('zero-hours','min-max'). ","disabled":true},{"key":"employment_type","value":"","description":"Filter employees by the type of employment ('employee','intern','self-employed','agency_worker','dga','volunteer'). ","disabled":true},{"key":"label_id","value":"","description":"Filter employees by specific labels associated with them.","disabled":true},{"key":"manager","value":"","description":"Filter employees who have direct reports (i.e., are managers). This should be an employee_id","disabled":true},{"key":"payroll","value":"","description":"Apply payroll-related filters.","disabled":true},{"key":"scoped_permission","value":"","description":"Filter employees by IDs that have specific scoped permissions.","disabled":true},{"key":"team","value":"","description":"Filter employees based on the scoped team IDs from the logged-in user's organization.","disabled":true},{"key":"terminated","value":"","description":"Filter employees based on termination status (true or false).","disabled":true},{"key":"work_schedule_type","value":"","description":"Filter employees by their work schedule type ('full-time','part-time','on-call').","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:49:31 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 1,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 138745,\n            \"organization_id\": 14799,\n            \"company_id\": 14799,\n            \"job_id\": 203439,\n            \"department_id\": 155885,\n            \"location_id\": null,\n            \"buddy_id\": 138750,\n            \"manager_id\": 138750,\n            \"indirect_manager_id\": null,\n            \"hr_manager_id\": 138751,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"first_name\": \"Chantalle\",\n            \"initials\": \"C.H.\",\n            \"last_name\": \"Titulaer\",\n            \"last_name_prefix\": \"van\",\n            \"last_name_composition\": \"own_name\",\n            \"composed_last_name\": \"Titulaer\",\n            \"composed_last_name_prefix\": \"van\",\n            \"full_name\": \"Chantalle van Titulaer\",\n            \"full_name_alt\": \"Titulaer, Chantalle van\",\n            \"gender\": \"female\",\n            \"number\": \"1\",\n            \"exact_employee_number\": \"5\",\n            \"nationality\": \"NR\",\n            \"national_id\": \"hyqflu\",\n            \"birth_place\": \"Rotterdam\",\n            \"birth_date\": \"1992-09-03\",\n            \"marital_status\": \"single\",\n            \"marital_date\": \"2019-07-01\",\n            \"partner_last_name\": null,\n            \"partner_last_name_prefix\": null,\n            \"work_email\": \"hey@buddee.nl\",\n            \"work_phone\": \"0678605343\",\n            \"work_phone_extension\": null,\n            \"work_mobile\": \"0612345678\",\n            \"personal_email\": null,\n            \"personal_phone\": \"0645632145\",\n            \"personal_mobile\": null,\n            \"street\": \"Hoofdstraat\",\n            \"street_number\": \"124\",\n            \"street_number_suffix\": \"B\",\n            \"postal_code\": \"3062 DF\",\n            \"city\": \"Amsterdam\",\n            \"country\": \"NL\",\n            \"bank_account_holder\": \"C. Titulaer\",\n            \"bank_account_iban\": \"NL68INGB9012918502\",\n            \"emergency_contact_name\": \"Hans\",\n            \"emergency_contact_relation\": \"Vader\",\n            \"emergency_contact_email\": null,\n            \"emergency_contact_phone\": \"0627472838\",\n            \"hire_date\": null,\n            \"employment_date\": \"2021-11-15\",\n            \"first_day_at_work_date\": \"2021-11-15\",\n            \"seniority_date\": \"2021-11-15\",\n            \"archived_at\": null,\n            \"created_at\": \"2021-04-19 12:39:15\",\n            \"updated_at\": \"2024-11-11 09:28:35\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"invite\",\n                \"read\",\n                \"read.full\",\n                \"update\"\n            ],\n            \"salutation\": \"Mevr.\"\n        }\n    ]\n}"}],"_postman_id":"77f35b4f-8ea6-4898-87e9-8045b5170f2d"},{"name":"Employee","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"8fe419f6-e2c5-407a-a2d4-8276cc6f2041"}}],"id":"06471c15-17a2-45a6-baa9-0e146a06e793","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/employees/138745","description":"<p>Retrieves all employees.</p>\n","urlObject":{"path":["employees","138745"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"c0913203-fceb-4f45-a9de-6a3bd714e0e0","name":"Employee","originalRequest":{"method":"GET","header":[],"url":"https://api.buddee.nl/employees/138745"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:44:54 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 138745,\n        \"organization_id\": 14799,\n        \"company_id\": 14799,\n        \"job_id\": 203439,\n        \"department_id\": 155885,\n        \"location_id\": null,\n        \"buddy_id\": 138750,\n        \"manager_id\": 138750,\n        \"indirect_manager_id\": null,\n        \"hr_manager_id\": 138751,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"first_name\": \"Chantalle\",\n        \"initials\": \"C.H.\",\n        \"last_name\": \"Titulaer\",\n        \"last_name_prefix\": \"van\",\n        \"last_name_composition\": \"own_name\",\n        \"composed_last_name\": \"Titulaer\",\n        \"composed_last_name_prefix\": \"van\",\n        \"full_name\": \"Chantalle van Titulaer\",\n        \"full_name_alt\": \"Titulaer, Chantalle van\",\n        \"gender\": \"female\",\n        \"number\": \"1\",\n        \"exact_employee_number\": \"5\",\n        \"nationality\": \"NR\",\n        \"national_id\": \"hyqflu\",\n        \"birth_place\": \"Rotterdam\",\n        \"birth_date\": \"1992-09-03\",\n        \"marital_status\": \"single\",\n        \"marital_date\": \"2019-07-01\",\n        \"partner_last_name\": null,\n        \"partner_last_name_prefix\": null,\n        \"work_email\": \"hey@buddee.nl\",\n        \"work_phone\": \"0678605343\",\n        \"work_phone_extension\": null,\n        \"work_mobile\": \"0612345678\",\n        \"personal_email\": null,\n        \"personal_phone\": \"0645632145\",\n        \"personal_mobile\": null,\n        \"street\": \"Hoofdstraat\",\n        \"street_number\": \"124\",\n        \"street_number_suffix\": \"B\",\n        \"postal_code\": \"3062 DF\",\n        \"city\": \"Amsterdam\",\n        \"country\": \"NL\",\n        \"bank_account_holder\": \"C. Titulaer\",\n        \"bank_account_iban\": \"NL68INGB9012918502\",\n        \"emergency_contact_name\": \"Hans\",\n        \"emergency_contact_relation\": \"Vader\",\n        \"emergency_contact_email\": null,\n        \"emergency_contact_phone\": \"0627472838\",\n        \"hire_date\": null,\n        \"employment_date\": \"2021-11-15\",\n        \"first_day_at_work_date\": \"2021-11-15\",\n        \"seniority_date\": \"2021-11-15\",\n        \"archived_at\": null,\n        \"created_at\": \"2021-04-19 12:39:15\",\n        \"updated_at\": \"2024-11-11 09:28:35\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"invite\",\n            \"read\",\n            \"read.full\",\n            \"update\",\n            \"approvals.read\",\n            \"approvals.update\",\n            \"assets.create\",\n            \"assets.delete\",\n            \"assets.read\",\n            \"assets.read.unassigned\",\n            \"assets.update\",\n            \"company_bikes.create\",\n            \"company_bikes.delete\",\n            \"company_bikes.read\",\n            \"company_bikes.update\",\n            \"company_cars.create\",\n            \"company_cars.delete\",\n            \"company_cars.read\",\n            \"company_cars.update\",\n            \"contracts.create\",\n            \"contracts.delete\",\n            \"contracts.read\",\n            \"contracts.update\",\n            \"documents.attribute.is_shared_with_all\",\n            \"documents.attribute.is_shared_with_employee\",\n            \"documents.create\",\n            \"documents.delete\",\n            \"documents.read\",\n            \"documents.read.unassigned\",\n            \"documents.update\",\n            \"employee_attributes.create\",\n            \"employee_attributes.delete\",\n            \"employee_attributes.read\",\n            \"employee_attributes.update\",\n            \"employee_change_requests.create\",\n            \"employee_change_requests.delete\",\n            \"employee_change_requests.merge\",\n            \"employee_change_requests.read\",\n            \"employee_change_requests.update\",\n            \"employee_changes.export\",\n            \"employee_changes.read\",\n            \"employee_course_documents.create\",\n            \"employee_course_documents.delete\",\n            \"employee_course_documents.read\",\n            \"employee_courses.create\",\n            \"employee_courses.delete\",\n            \"employee_courses.management_settings\",\n            \"employee_courses.read\",\n            \"employee_courses.report\",\n            \"employee_courses.update\",\n            \"employee_labels.create\",\n            \"employee_labels.delete\",\n            \"employee_labels.read\",\n            \"employee_labels.update\",\n            \"employee_leave_types.delete\",\n            \"employee_leave_types.read\",\n            \"employee_leave_types.report\",\n            \"employee_leave_types.update\",\n            \"employee_notes.create\",\n            \"employee_notes.delete\",\n            \"employee_notes.read\",\n            \"employee_notes.update\",\n            \"employee_payroll_settings.read\",\n            \"employee_payroll_settings.update\",\n            \"employee_pictures.create\",\n            \"employee_pictures.delete\",\n            \"employee_pictures.read\",\n            \"employee_projects.create\",\n            \"employee_projects.delete\",\n            \"employee_projects.read\",\n            \"employee_projects.update\",\n            \"employee_settings.management_settings\",\n            \"employee_settings.read\",\n            \"employee_settings.update\",\n            \"employee_skills.create\",\n            \"employee_skills.delete\",\n            \"employee_skills.read\",\n            \"employee_skills.report\",\n            \"employee_skills.update\",\n            \"employments.create\",\n            \"employments.delete\",\n            \"employments.read\",\n            \"employments.update\",\n            \"expense_documents.create\",\n            \"expense_documents.delete\",\n            \"expense_documents.read\",\n            \"expense_items.create\",\n            \"expense_items.delete\",\n            \"expense_items.read\",\n            \"expense_items.update\",\n            \"expenses.attribute.is_processed\",\n            \"expenses.create\",\n            \"expenses.delete\",\n            \"expenses.read\",\n            \"expenses.report\",\n            \"expenses.update\",\n            \"family_members.create\",\n            \"family_members.delete\",\n            \"family_members.read\",\n            \"family_members.update\",\n            \"form_answers.read\",\n            \"form_answers.update\",\n            \"form_documents.create\",\n            \"form_documents.delete\",\n            \"form_documents.read\",\n            \"form_viewers.create\",\n            \"form_viewers.delete\",\n            \"form_viewers.read\",\n            \"forms.create\",\n            \"forms.delete\",\n            \"forms.management_settings\",\n            \"forms.read\",\n            \"forms.update\",\n            \"goals.create\",\n            \"goals.delete\",\n            \"goals.read\",\n            \"goals.report\",\n            \"goals.update\",\n            \"leave_balance_adjustments.create\",\n            \"leave_balance_adjustments.delete\",\n            \"leave_balance_adjustments.read\",\n            \"leave_balance_adjustments.update\",\n            \"leave_balance_prorations.read\",\n            \"leave_balances.create\",\n            \"leave_balances.delete\",\n            \"leave_balances.read\",\n            \"leave_balances.report\",\n            \"leave_balances.update\",\n            \"leave_registrations.create\",\n            \"leave_registrations.delete\",\n            \"leave_registrations.read\",\n            \"leave_registrations.update\",\n            \"leave_requests.create\",\n            \"leave_requests.delete\",\n            \"leave_requests.read\",\n            \"leave_requests.update\",\n            \"leave_schemes.create\",\n            \"leave_schemes.delete\",\n            \"leave_schemes.read\",\n            \"leave_schemes.update\",\n            \"payroll_documents.create\",\n            \"payroll_documents.delete\",\n            \"payroll_documents.read\",\n            \"payroll_documents.read.unassigned\",\n            \"payroll_documents.update\",\n            \"positions.create\",\n            \"positions.delete\",\n            \"positions.read\",\n            \"positions.update\",\n            \"salaries.create\",\n            \"salaries.delete\",\n            \"salaries.read\",\n            \"salaries.report\",\n            \"salaries.update\",\n            \"sick_leave_registrations.attribute.do_auto_calculate\",\n            \"sick_leave_registrations.attribute.is_verified\",\n            \"sick_leave_registrations.create\",\n            \"sick_leave_registrations.delete\",\n            \"sick_leave_registrations.read\",\n            \"sick_leave_registrations.report\",\n            \"sick_leave_registrations.update\",\n            \"tasks.create\",\n            \"tasks.delete\",\n            \"tasks.read\",\n            \"tasks.read.unassigned\",\n            \"tasks.update\",\n            \"template_concepts.create\",\n            \"template_concepts.delete\",\n            \"template_concepts.read\",\n            \"template_concepts.update\",\n            \"terminations.create\",\n            \"terminations.delete\",\n            \"terminations.read\",\n            \"terminations.update\",\n            \"time_registrations.attribute.is_processed\",\n            \"time_registrations.create\",\n            \"time_registrations.delete\",\n            \"time_registrations.import\",\n            \"time_registrations.leave_balance_adjustment.create\",\n            \"time_registrations.leave_balance_adjustment.delete\",\n            \"time_registrations.read\",\n            \"time_registrations.report\",\n            \"time_registrations.update\",\n            \"trip_registrations.attribute.is_processed\",\n            \"trip_registrations.create\",\n            \"trip_registrations.delete\",\n            \"trip_registrations.import\",\n            \"trip_registrations.read\",\n            \"trip_registrations.report\",\n            \"trip_registrations.update\",\n            \"wage_components.create\",\n            \"wage_components.delete\",\n            \"wage_components.read\",\n            \"wage_components.update\",\n            \"work_location_statuses.attribute.is_processed\",\n            \"work_location_statuses.create\",\n            \"work_location_statuses.delete\",\n            \"work_location_statuses.read\",\n            \"work_location_statuses.report\",\n            \"work_location_statuses.update\",\n            \"work_schedules.create\",\n            \"work_schedules.delete\",\n            \"work_schedules.read\",\n            \"work_schedules.update\"\n        ],\n        \"salutation\": \"Mevr.\"\n    }\n}"}],"_postman_id":"06471c15-17a2-45a6-baa9-0e146a06e793"},{"name":"Employee","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"45e13b1f-3d8c-44ff-ad96-8615cb30d0a5"}}],"id":"9a44ce59-7123-45e7-b5bd-b65377bf20e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/employees/163483","description":"<p>Deletes a single employee</p>\n","urlObject":{"path":["employees","163483"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"0e689f0c-abe5-4755-b004-d1daf57db316","name":"Deleted","originalRequest":{"method":"DELETE","header":[],"url":"https://api.buddee.nl/employees/163483"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 13:05:44 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"9a44ce59-7123-45e7-b5bd-b65377bf20e6"},{"name":"Create employee","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"f9836fe2-1f67-4510-999a-6a8baa64bcff"}}],"id":"e711ba89-4cb4-4655-963a-1a85f19b1269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"company_id\": \"{{ company_id }}\",\n  \"first_name\": \"John \",\n  \"last_name\": \"Doe\",\n  \"employment_date\": \"2024-01-01\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/employees","description":"<p><strong>Creates an employee</strong></p>\n<p>The JSON example shows the minimum required fields to create an employee.</p>\n","urlObject":{"path":["employees"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"0b9b4035-4ae4-4b93-9d39-de8f59bfe072","name":"Employee","originalRequest":{"method":"GET","header":[],"url":"https://api.buddee.nl/employees/138745"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:44:54 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 138745,\n        \"organization_id\": 14799,\n        \"company_id\": 14799,\n        \"job_id\": 203439,\n        \"department_id\": 155885,\n        \"location_id\": null,\n        \"buddy_id\": 138750,\n        \"manager_id\": 138750,\n        \"indirect_manager_id\": null,\n        \"hr_manager_id\": 138751,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"first_name\": \"Chantalle\",\n        \"initials\": \"C.H.\",\n        \"last_name\": \"Titulaer\",\n        \"last_name_prefix\": \"van\",\n        \"last_name_composition\": \"own_name\",\n        \"composed_last_name\": \"Titulaer\",\n        \"composed_last_name_prefix\": \"van\",\n        \"full_name\": \"Chantalle van Titulaer\",\n        \"full_name_alt\": \"Titulaer, Chantalle van\",\n        \"gender\": \"female\",\n        \"number\": \"1\",\n        \"exact_employee_number\": \"5\",\n        \"nationality\": \"NR\",\n        \"national_id\": \"hyqflu\",\n        \"birth_place\": \"Rotterdam\",\n        \"birth_date\": \"1992-09-03\",\n        \"marital_status\": \"single\",\n        \"marital_date\": \"2019-07-01\",\n        \"partner_last_name\": null,\n        \"partner_last_name_prefix\": null,\n        \"work_email\": \"hey@buddee.nl\",\n        \"work_phone\": \"0678605343\",\n        \"work_phone_extension\": null,\n        \"work_mobile\": \"0612345678\",\n        \"personal_email\": null,\n        \"personal_phone\": \"0645632145\",\n        \"personal_mobile\": null,\n        \"street\": \"Hoofdstraat\",\n        \"street_number\": \"124\",\n        \"street_number_suffix\": \"B\",\n        \"postal_code\": \"3062 DF\",\n        \"city\": \"Amsterdam\",\n        \"country\": \"NL\",\n        \"bank_account_holder\": \"C. Titulaer\",\n        \"bank_account_iban\": \"NL68INGB9012918502\",\n        \"emergency_contact_name\": \"Hans\",\n        \"emergency_contact_relation\": \"Vader\",\n        \"emergency_contact_email\": null,\n        \"emergency_contact_phone\": \"0627472838\",\n        \"hire_date\": null,\n        \"employment_date\": \"2021-11-15\",\n        \"first_day_at_work_date\": \"2021-11-15\",\n        \"seniority_date\": \"2021-11-15\",\n        \"archived_at\": null,\n        \"created_at\": \"2021-04-19 12:39:15\",\n        \"updated_at\": \"2024-11-11 09:28:35\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"invite\",\n            \"read\",\n            \"read.full\",\n            \"update\",\n            \"approvals.read\",\n            \"approvals.update\",\n            \"assets.create\",\n            \"assets.delete\",\n            \"assets.read\",\n            \"assets.read.unassigned\",\n            \"assets.update\",\n            \"company_bikes.create\",\n            \"company_bikes.delete\",\n            \"company_bikes.read\",\n            \"company_bikes.update\",\n            \"company_cars.create\",\n            \"company_cars.delete\",\n            \"company_cars.read\",\n            \"company_cars.update\",\n            \"contracts.create\",\n            \"contracts.delete\",\n            \"contracts.read\",\n            \"contracts.update\",\n            \"documents.attribute.is_shared_with_all\",\n            \"documents.attribute.is_shared_with_employee\",\n            \"documents.create\",\n            \"documents.delete\",\n            \"documents.read\",\n            \"documents.read.unassigned\",\n            \"documents.update\",\n            \"employee_attributes.create\",\n            \"employee_attributes.delete\",\n            \"employee_attributes.read\",\n            \"employee_attributes.update\",\n            \"employee_change_requests.create\",\n            \"employee_change_requests.delete\",\n            \"employee_change_requests.merge\",\n            \"employee_change_requests.read\",\n            \"employee_change_requests.update\",\n            \"employee_changes.export\",\n            \"employee_changes.read\",\n            \"employee_course_documents.create\",\n            \"employee_course_documents.delete\",\n            \"employee_course_documents.read\",\n            \"employee_courses.create\",\n            \"employee_courses.delete\",\n            \"employee_courses.management_settings\",\n            \"employee_courses.read\",\n            \"employee_courses.report\",\n            \"employee_courses.update\",\n            \"employee_labels.create\",\n            \"employee_labels.delete\",\n            \"employee_labels.read\",\n            \"employee_labels.update\",\n            \"employee_leave_types.delete\",\n            \"employee_leave_types.read\",\n            \"employee_leave_types.report\",\n            \"employee_leave_types.update\",\n            \"employee_notes.create\",\n            \"employee_notes.delete\",\n            \"employee_notes.read\",\n            \"employee_notes.update\",\n            \"employee_payroll_settings.read\",\n            \"employee_payroll_settings.update\",\n            \"employee_pictures.create\",\n            \"employee_pictures.delete\",\n            \"employee_pictures.read\",\n            \"employee_projects.create\",\n            \"employee_projects.delete\",\n            \"employee_projects.read\",\n            \"employee_projects.update\",\n            \"employee_settings.management_settings\",\n            \"employee_settings.read\",\n            \"employee_settings.update\",\n            \"employee_skills.create\",\n            \"employee_skills.delete\",\n            \"employee_skills.read\",\n            \"employee_skills.report\",\n            \"employee_skills.update\",\n            \"employments.create\",\n            \"employments.delete\",\n            \"employments.read\",\n            \"employments.update\",\n            \"expense_documents.create\",\n            \"expense_documents.delete\",\n            \"expense_documents.read\",\n            \"expense_items.create\",\n            \"expense_items.delete\",\n            \"expense_items.read\",\n            \"expense_items.update\",\n            \"expenses.attribute.is_processed\",\n            \"expenses.create\",\n            \"expenses.delete\",\n            \"expenses.read\",\n            \"expenses.report\",\n            \"expenses.update\",\n            \"family_members.create\",\n            \"family_members.delete\",\n            \"family_members.read\",\n            \"family_members.update\",\n            \"form_answers.read\",\n            \"form_answers.update\",\n            \"form_documents.create\",\n            \"form_documents.delete\",\n            \"form_documents.read\",\n            \"form_viewers.create\",\n            \"form_viewers.delete\",\n            \"form_viewers.read\",\n            \"forms.create\",\n            \"forms.delete\",\n            \"forms.management_settings\",\n            \"forms.read\",\n            \"forms.update\",\n            \"goals.create\",\n            \"goals.delete\",\n            \"goals.read\",\n            \"goals.report\",\n            \"goals.update\",\n            \"leave_balance_adjustments.create\",\n            \"leave_balance_adjustments.delete\",\n            \"leave_balance_adjustments.read\",\n            \"leave_balance_adjustments.update\",\n            \"leave_balance_prorations.read\",\n            \"leave_balances.create\",\n            \"leave_balances.delete\",\n            \"leave_balances.read\",\n            \"leave_balances.report\",\n            \"leave_balances.update\",\n            \"leave_registrations.create\",\n            \"leave_registrations.delete\",\n            \"leave_registrations.read\",\n            \"leave_registrations.update\",\n            \"leave_requests.create\",\n            \"leave_requests.delete\",\n            \"leave_requests.read\",\n            \"leave_requests.update\",\n            \"leave_schemes.create\",\n            \"leave_schemes.delete\",\n            \"leave_schemes.read\",\n            \"leave_schemes.update\",\n            \"payroll_documents.create\",\n            \"payroll_documents.delete\",\n            \"payroll_documents.read\",\n            \"payroll_documents.read.unassigned\",\n            \"payroll_documents.update\",\n            \"positions.create\",\n            \"positions.delete\",\n            \"positions.read\",\n            \"positions.update\",\n            \"salaries.create\",\n            \"salaries.delete\",\n            \"salaries.read\",\n            \"salaries.report\",\n            \"salaries.update\",\n            \"sick_leave_registrations.attribute.do_auto_calculate\",\n            \"sick_leave_registrations.attribute.is_verified\",\n            \"sick_leave_registrations.create\",\n            \"sick_leave_registrations.delete\",\n            \"sick_leave_registrations.read\",\n            \"sick_leave_registrations.report\",\n            \"sick_leave_registrations.update\",\n            \"tasks.create\",\n            \"tasks.delete\",\n            \"tasks.read\",\n            \"tasks.read.unassigned\",\n            \"tasks.update\",\n            \"template_concepts.create\",\n            \"template_concepts.delete\",\n            \"template_concepts.read\",\n            \"template_concepts.update\",\n            \"terminations.create\",\n            \"terminations.delete\",\n            \"terminations.read\",\n            \"terminations.update\",\n            \"time_registrations.attribute.is_processed\",\n            \"time_registrations.create\",\n            \"time_registrations.delete\",\n            \"time_registrations.import\",\n            \"time_registrations.leave_balance_adjustment.create\",\n            \"time_registrations.leave_balance_adjustment.delete\",\n            \"time_registrations.read\",\n            \"time_registrations.report\",\n            \"time_registrations.update\",\n            \"trip_registrations.attribute.is_processed\",\n            \"trip_registrations.create\",\n            \"trip_registrations.delete\",\n            \"trip_registrations.import\",\n            \"trip_registrations.read\",\n            \"trip_registrations.report\",\n            \"trip_registrations.update\",\n            \"wage_components.create\",\n            \"wage_components.delete\",\n            \"wage_components.read\",\n            \"wage_components.update\",\n            \"work_location_statuses.attribute.is_processed\",\n            \"work_location_statuses.create\",\n            \"work_location_statuses.delete\",\n            \"work_location_statuses.read\",\n            \"work_location_statuses.report\",\n            \"work_location_statuses.update\",\n            \"work_schedules.create\",\n            \"work_schedules.delete\",\n            \"work_schedules.read\",\n            \"work_schedules.update\"\n        ],\n        \"salutation\": \"Mevr.\"\n    }\n}"},{"id":"a47ee620-9c37-4935-8d1f-301eaaef76b9","name":"New employee","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n//   \"company_id\": {{ company_id }},\n  \"first_name\": \"John \",\n  \"last_name\": \"Doe\",\n  \"employment_date\": \"2024-01-01\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 12:40:04 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 163468,\n        \"organization_id\": 14799,\n        \"company_id\": 15846,\n        \"job_id\": null,\n        \"department_id\": null,\n        \"location_id\": null,\n        \"buddy_id\": null,\n        \"manager_id\": null,\n        \"indirect_manager_id\": null,\n        \"hr_manager_id\": null,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"first_name\": \"John\",\n        \"initials\": null,\n        \"last_name\": \"Doe\",\n        \"last_name_prefix\": null,\n        \"last_name_composition\": \"own_name\",\n        \"composed_last_name\": \"Doe\",\n        \"composed_last_name_prefix\": null,\n        \"full_name\": \"John Doe\",\n        \"full_name_alt\": \"Doe, John\",\n        \"gender\": null,\n        \"number\": null,\n        \"exact_employee_number\": null,\n        \"nationality\": null,\n        \"national_id\": null,\n        \"birth_place\": null,\n        \"birth_date\": null,\n        \"marital_status\": null,\n        \"marital_date\": null,\n        \"partner_last_name\": null,\n        \"partner_last_name_prefix\": null,\n        \"work_email\": null,\n        \"work_phone\": null,\n        \"work_phone_extension\": null,\n        \"work_mobile\": null,\n        \"personal_email\": null,\n        \"personal_phone\": null,\n        \"personal_mobile\": null,\n        \"street\": null,\n        \"street_number\": null,\n        \"street_number_suffix\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"country\": null,\n        \"bank_account_holder\": null,\n        \"bank_account_iban\": null,\n        \"emergency_contact_name\": null,\n        \"emergency_contact_relation\": null,\n        \"emergency_contact_email\": null,\n        \"emergency_contact_phone\": null,\n        \"hire_date\": null,\n        \"employment_date\": \"2024-01-01\",\n        \"first_day_at_work_date\": \"2024-01-01\",\n        \"seniority_date\": \"2024-01-01\",\n        \"archived_at\": null,\n        \"created_at\": \"2024-12-02 12:40:04\",\n        \"updated_at\": \"2024-12-02 12:40:04\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"invite\",\n            \"read\",\n            \"read.full\",\n            \"update\"\n        ],\n        \"salutation\": \"Mx.\"\n    }\n}"}],"_postman_id":"e711ba89-4cb4-4655-963a-1a85f19b1269"},{"name":"Update employee","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"42b91295-0ce7-4641-b655-4193e54c5170"}}],"id":"37f99a56-2b97-4b13-82be-ea8e778e10fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Johny\",\n  \"last_name\": \"Does\",\n  \"work_email\": Carolanne59@yahoo.com\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/employees/{{new_employee_id}}","description":"<p>Updates an employee</p>\n","urlObject":{"path":["employees","{{new_employee_id}}"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"9670b12f-8109-416a-a177-a04320295f2f","name":"Employee","originalRequest":{"method":"GET","header":[],"url":"https://api.buddee.nl/employees/138745"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:44:54 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 138745,\n        \"organization_id\": 14799,\n        \"company_id\": 14799,\n        \"job_id\": 203439,\n        \"department_id\": 155885,\n        \"location_id\": null,\n        \"buddy_id\": 138750,\n        \"manager_id\": 138750,\n        \"indirect_manager_id\": null,\n        \"hr_manager_id\": 138751,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"first_name\": \"Chantalle\",\n        \"initials\": \"C.H.\",\n        \"last_name\": \"Titulaer\",\n        \"last_name_prefix\": \"van\",\n        \"last_name_composition\": \"own_name\",\n        \"composed_last_name\": \"Titulaer\",\n        \"composed_last_name_prefix\": \"van\",\n        \"full_name\": \"Chantalle van Titulaer\",\n        \"full_name_alt\": \"Titulaer, Chantalle van\",\n        \"gender\": \"female\",\n        \"number\": \"1\",\n        \"exact_employee_number\": \"5\",\n        \"nationality\": \"NR\",\n        \"national_id\": \"hyqflu\",\n        \"birth_place\": \"Rotterdam\",\n        \"birth_date\": \"1992-09-03\",\n        \"marital_status\": \"single\",\n        \"marital_date\": \"2019-07-01\",\n        \"partner_last_name\": null,\n        \"partner_last_name_prefix\": null,\n        \"work_email\": \"hey@buddee.nl\",\n        \"work_phone\": \"0678605343\",\n        \"work_phone_extension\": null,\n        \"work_mobile\": \"0612345678\",\n        \"personal_email\": null,\n        \"personal_phone\": \"0645632145\",\n        \"personal_mobile\": null,\n        \"street\": \"Hoofdstraat\",\n        \"street_number\": \"124\",\n        \"street_number_suffix\": \"B\",\n        \"postal_code\": \"3062 DF\",\n        \"city\": \"Amsterdam\",\n        \"country\": \"NL\",\n        \"bank_account_holder\": \"C. Titulaer\",\n        \"bank_account_iban\": \"NL68INGB9012918502\",\n        \"emergency_contact_name\": \"Hans\",\n        \"emergency_contact_relation\": \"Vader\",\n        \"emergency_contact_email\": null,\n        \"emergency_contact_phone\": \"0627472838\",\n        \"hire_date\": null,\n        \"employment_date\": \"2021-11-15\",\n        \"first_day_at_work_date\": \"2021-11-15\",\n        \"seniority_date\": \"2021-11-15\",\n        \"archived_at\": null,\n        \"created_at\": \"2021-04-19 12:39:15\",\n        \"updated_at\": \"2024-11-11 09:28:35\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"invite\",\n            \"read\",\n            \"read.full\",\n            \"update\",\n            \"approvals.read\",\n            \"approvals.update\",\n            \"assets.create\",\n            \"assets.delete\",\n            \"assets.read\",\n            \"assets.read.unassigned\",\n            \"assets.update\",\n            \"company_bikes.create\",\n            \"company_bikes.delete\",\n            \"company_bikes.read\",\n            \"company_bikes.update\",\n            \"company_cars.create\",\n            \"company_cars.delete\",\n            \"company_cars.read\",\n            \"company_cars.update\",\n            \"contracts.create\",\n            \"contracts.delete\",\n            \"contracts.read\",\n            \"contracts.update\",\n            \"documents.attribute.is_shared_with_all\",\n            \"documents.attribute.is_shared_with_employee\",\n            \"documents.create\",\n            \"documents.delete\",\n            \"documents.read\",\n            \"documents.read.unassigned\",\n            \"documents.update\",\n            \"employee_attributes.create\",\n            \"employee_attributes.delete\",\n            \"employee_attributes.read\",\n            \"employee_attributes.update\",\n            \"employee_change_requests.create\",\n            \"employee_change_requests.delete\",\n            \"employee_change_requests.merge\",\n            \"employee_change_requests.read\",\n            \"employee_change_requests.update\",\n            \"employee_changes.export\",\n            \"employee_changes.read\",\n            \"employee_course_documents.create\",\n            \"employee_course_documents.delete\",\n            \"employee_course_documents.read\",\n            \"employee_courses.create\",\n            \"employee_courses.delete\",\n            \"employee_courses.management_settings\",\n            \"employee_courses.read\",\n            \"employee_courses.report\",\n            \"employee_courses.update\",\n            \"employee_labels.create\",\n            \"employee_labels.delete\",\n            \"employee_labels.read\",\n            \"employee_labels.update\",\n            \"employee_leave_types.delete\",\n            \"employee_leave_types.read\",\n            \"employee_leave_types.report\",\n            \"employee_leave_types.update\",\n            \"employee_notes.create\",\n            \"employee_notes.delete\",\n            \"employee_notes.read\",\n            \"employee_notes.update\",\n            \"employee_payroll_settings.read\",\n            \"employee_payroll_settings.update\",\n            \"employee_pictures.create\",\n            \"employee_pictures.delete\",\n            \"employee_pictures.read\",\n            \"employee_projects.create\",\n            \"employee_projects.delete\",\n            \"employee_projects.read\",\n            \"employee_projects.update\",\n            \"employee_settings.management_settings\",\n            \"employee_settings.read\",\n            \"employee_settings.update\",\n            \"employee_skills.create\",\n            \"employee_skills.delete\",\n            \"employee_skills.read\",\n            \"employee_skills.report\",\n            \"employee_skills.update\",\n            \"employments.create\",\n            \"employments.delete\",\n            \"employments.read\",\n            \"employments.update\",\n            \"expense_documents.create\",\n            \"expense_documents.delete\",\n            \"expense_documents.read\",\n            \"expense_items.create\",\n            \"expense_items.delete\",\n            \"expense_items.read\",\n            \"expense_items.update\",\n            \"expenses.attribute.is_processed\",\n            \"expenses.create\",\n            \"expenses.delete\",\n            \"expenses.read\",\n            \"expenses.report\",\n            \"expenses.update\",\n            \"family_members.create\",\n            \"family_members.delete\",\n            \"family_members.read\",\n            \"family_members.update\",\n            \"form_answers.read\",\n            \"form_answers.update\",\n            \"form_documents.create\",\n            \"form_documents.delete\",\n            \"form_documents.read\",\n            \"form_viewers.create\",\n            \"form_viewers.delete\",\n            \"form_viewers.read\",\n            \"forms.create\",\n            \"forms.delete\",\n            \"forms.management_settings\",\n            \"forms.read\",\n            \"forms.update\",\n            \"goals.create\",\n            \"goals.delete\",\n            \"goals.read\",\n            \"goals.report\",\n            \"goals.update\",\n            \"leave_balance_adjustments.create\",\n            \"leave_balance_adjustments.delete\",\n            \"leave_balance_adjustments.read\",\n            \"leave_balance_adjustments.update\",\n            \"leave_balance_prorations.read\",\n            \"leave_balances.create\",\n            \"leave_balances.delete\",\n            \"leave_balances.read\",\n            \"leave_balances.report\",\n            \"leave_balances.update\",\n            \"leave_registrations.create\",\n            \"leave_registrations.delete\",\n            \"leave_registrations.read\",\n            \"leave_registrations.update\",\n            \"leave_requests.create\",\n            \"leave_requests.delete\",\n            \"leave_requests.read\",\n            \"leave_requests.update\",\n            \"leave_schemes.create\",\n            \"leave_schemes.delete\",\n            \"leave_schemes.read\",\n            \"leave_schemes.update\",\n            \"payroll_documents.create\",\n            \"payroll_documents.delete\",\n            \"payroll_documents.read\",\n            \"payroll_documents.read.unassigned\",\n            \"payroll_documents.update\",\n            \"positions.create\",\n            \"positions.delete\",\n            \"positions.read\",\n            \"positions.update\",\n            \"salaries.create\",\n            \"salaries.delete\",\n            \"salaries.read\",\n            \"salaries.report\",\n            \"salaries.update\",\n            \"sick_leave_registrations.attribute.do_auto_calculate\",\n            \"sick_leave_registrations.attribute.is_verified\",\n            \"sick_leave_registrations.create\",\n            \"sick_leave_registrations.delete\",\n            \"sick_leave_registrations.read\",\n            \"sick_leave_registrations.report\",\n            \"sick_leave_registrations.update\",\n            \"tasks.create\",\n            \"tasks.delete\",\n            \"tasks.read\",\n            \"tasks.read.unassigned\",\n            \"tasks.update\",\n            \"template_concepts.create\",\n            \"template_concepts.delete\",\n            \"template_concepts.read\",\n            \"template_concepts.update\",\n            \"terminations.create\",\n            \"terminations.delete\",\n            \"terminations.read\",\n            \"terminations.update\",\n            \"time_registrations.attribute.is_processed\",\n            \"time_registrations.create\",\n            \"time_registrations.delete\",\n            \"time_registrations.import\",\n            \"time_registrations.leave_balance_adjustment.create\",\n            \"time_registrations.leave_balance_adjustment.delete\",\n            \"time_registrations.read\",\n            \"time_registrations.report\",\n            \"time_registrations.update\",\n            \"trip_registrations.attribute.is_processed\",\n            \"trip_registrations.create\",\n            \"trip_registrations.delete\",\n            \"trip_registrations.import\",\n            \"trip_registrations.read\",\n            \"trip_registrations.report\",\n            \"trip_registrations.update\",\n            \"wage_components.create\",\n            \"wage_components.delete\",\n            \"wage_components.read\",\n            \"wage_components.update\",\n            \"work_location_statuses.attribute.is_processed\",\n            \"work_location_statuses.create\",\n            \"work_location_statuses.delete\",\n            \"work_location_statuses.read\",\n            \"work_location_statuses.report\",\n            \"work_location_statuses.update\",\n            \"work_schedules.create\",\n            \"work_schedules.delete\",\n            \"work_schedules.read\",\n            \"work_schedules.update\"\n        ],\n        \"salutation\": \"Mevr.\"\n    }\n}"},{"id":"8d27efd7-10bb-4c22-97f7-a60257705e3a","name":"New employee","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n//   \"company_id\": {{ company_id }},\n  \"first_name\": \"John \",\n  \"last_name\": \"Doe\",\n  \"employment_date\": \"2024-01-01\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 12:40:04 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 163468,\n        \"organization_id\": 14799,\n        \"company_id\": 15846,\n        \"job_id\": null,\n        \"department_id\": null,\n        \"location_id\": null,\n        \"buddy_id\": null,\n        \"manager_id\": null,\n        \"indirect_manager_id\": null,\n        \"hr_manager_id\": null,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"first_name\": \"John\",\n        \"initials\": null,\n        \"last_name\": \"Doe\",\n        \"last_name_prefix\": null,\n        \"last_name_composition\": \"own_name\",\n        \"composed_last_name\": \"Doe\",\n        \"composed_last_name_prefix\": null,\n        \"full_name\": \"John Doe\",\n        \"full_name_alt\": \"Doe, John\",\n        \"gender\": null,\n        \"number\": null,\n        \"exact_employee_number\": null,\n        \"nationality\": null,\n        \"national_id\": null,\n        \"birth_place\": null,\n        \"birth_date\": null,\n        \"marital_status\": null,\n        \"marital_date\": null,\n        \"partner_last_name\": null,\n        \"partner_last_name_prefix\": null,\n        \"work_email\": null,\n        \"work_phone\": null,\n        \"work_phone_extension\": null,\n        \"work_mobile\": null,\n        \"personal_email\": null,\n        \"personal_phone\": null,\n        \"personal_mobile\": null,\n        \"street\": null,\n        \"street_number\": null,\n        \"street_number_suffix\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"country\": null,\n        \"bank_account_holder\": null,\n        \"bank_account_iban\": null,\n        \"emergency_contact_name\": null,\n        \"emergency_contact_relation\": null,\n        \"emergency_contact_email\": null,\n        \"emergency_contact_phone\": null,\n        \"hire_date\": null,\n        \"employment_date\": \"2024-01-01\",\n        \"first_day_at_work_date\": \"2024-01-01\",\n        \"seniority_date\": \"2024-01-01\",\n        \"archived_at\": null,\n        \"created_at\": \"2024-12-02 12:40:04\",\n        \"updated_at\": \"2024-12-02 12:40:04\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"invite\",\n            \"read\",\n            \"read.full\",\n            \"update\"\n        ],\n        \"salutation\": \"Mx.\"\n    }\n}"},{"id":"622b8a5d-04b3-485f-9599-d792e0170b09","name":"Updated employee","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Johny\",\n  \"last_name\": \"Does\",\n  \"work_email\": Kaden.Mayer@hotmail.com\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/employees/{{new_employee_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 12:56:53 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 163472,\n        \"organization_id\": 14799,\n        \"company_id\": 15846,\n        \"job_id\": null,\n        \"department_id\": null,\n        \"location_id\": null,\n        \"buddy_id\": null,\n        \"manager_id\": null,\n        \"indirect_manager_id\": null,\n        \"hr_manager_id\": null,\n        \"cost_center_id\": null,\n        \"cost_unit_id\": null,\n        \"first_name\": \"John\",\n        \"initials\": null,\n        \"last_name\": \"Doe\",\n        \"last_name_prefix\": null,\n        \"last_name_composition\": \"own_name\",\n        \"composed_last_name\": \"Doe\",\n        \"composed_last_name_prefix\": null,\n        \"full_name\": \"John Doe\",\n        \"full_name_alt\": \"Doe, John\",\n        \"gender\": null,\n        \"number\": null,\n        \"exact_employee_number\": null,\n        \"nationality\": null,\n        \"national_id\": null,\n        \"birth_place\": null,\n        \"birth_date\": null,\n        \"marital_status\": null,\n        \"marital_date\": null,\n        \"partner_last_name\": null,\n        \"partner_last_name_prefix\": null,\n        \"work_email\": null,\n        \"work_phone\": null,\n        \"work_phone_extension\": null,\n        \"work_mobile\": null,\n        \"personal_email\": null,\n        \"personal_phone\": null,\n        \"personal_mobile\": null,\n        \"street\": null,\n        \"street_number\": null,\n        \"street_number_suffix\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"country\": null,\n        \"bank_account_holder\": null,\n        \"bank_account_iban\": null,\n        \"emergency_contact_name\": null,\n        \"emergency_contact_relation\": null,\n        \"emergency_contact_email\": null,\n        \"emergency_contact_phone\": null,\n        \"hire_date\": null,\n        \"employment_date\": \"2024-01-01\",\n        \"first_day_at_work_date\": \"2024-01-01\",\n        \"seniority_date\": \"2024-01-01\",\n        \"archived_at\": null,\n        \"created_at\": \"2024-12-02 12:51:06\",\n        \"updated_at\": \"2024-12-02 12:51:06\",\n        \"company\": {\n            \"id\": 15846,\n            \"organization_id\": 14799,\n            \"home_wage_component_type_id\": null,\n            \"office_wage_component_type_id\": null,\n            \"travel_wage_component_type_id\": null,\n            \"name\": \"Buddee Demo België\",\n            \"legal_name\": null,\n            \"legal_form\": null,\n            \"coc_number\": \"1234567\",\n            \"vat_number\": null,\n            \"payroll_tax_number\": null,\n            \"sector_code\": null,\n            \"cao_code\": null,\n            \"payroll_iban\": null,\n            \"email\": \"buddee@buddee.nl\",\n            \"admin_email\": null,\n            \"invoice_email\": null,\n            \"phone\": null,\n            \"street\": \"ijsbaanpad\",\n            \"street_number\": \"2\",\n            \"street_number_suffix\": null,\n            \"postal_code\": \"1233af\",\n            \"city\": \"Antwerpen\",\n            \"country\": \"BE\",\n            \"bank_account_holder\": null,\n            \"bank_account_iban\": null,\n            \"payment_method\": null,\n            \"created_at\": \"2023-12-18 08:20:34\",\n            \"updated_at\": \"2023-12-18 09:55:13\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"read.full\",\n                \"update\"\n            ]\n        },\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"invite\",\n            \"read\",\n            \"read.full\",\n            \"update\",\n            \"approvals.read\",\n            \"approvals.update\",\n            \"assets.create\",\n            \"assets.delete\",\n            \"assets.read\",\n            \"assets.read.unassigned\",\n            \"assets.update\",\n            \"company_bikes.create\",\n            \"company_bikes.delete\",\n            \"company_bikes.read\",\n            \"company_bikes.update\",\n            \"company_cars.create\",\n            \"company_cars.delete\",\n            \"company_cars.read\",\n            \"company_cars.update\",\n            \"contracts.create\",\n            \"contracts.delete\",\n            \"contracts.read\",\n            \"contracts.update\",\n            \"documents.attribute.is_shared_with_all\",\n            \"documents.attribute.is_shared_with_employee\",\n            \"documents.create\",\n            \"documents.delete\",\n            \"documents.read\",\n            \"documents.read.unassigned\",\n            \"documents.update\",\n            \"employee_attributes.create\",\n            \"employee_attributes.delete\",\n            \"employee_attributes.read\",\n            \"employee_attributes.update\",\n            \"employee_change_requests.create\",\n            \"employee_change_requests.delete\",\n            \"employee_change_requests.merge\",\n            \"employee_change_requests.read\",\n            \"employee_change_requests.update\",\n            \"employee_changes.export\",\n            \"employee_changes.read\",\n            \"employee_course_documents.create\",\n            \"employee_course_documents.delete\",\n            \"employee_course_documents.read\",\n            \"employee_courses.create\",\n            \"employee_courses.delete\",\n            \"employee_courses.management_settings\",\n            \"employee_courses.read\",\n            \"employee_courses.report\",\n            \"employee_courses.update\",\n            \"employee_labels.create\",\n            \"employee_labels.delete\",\n            \"employee_labels.read\",\n            \"employee_labels.update\",\n            \"employee_leave_types.delete\",\n            \"employee_leave_types.read\",\n            \"employee_leave_types.report\",\n            \"employee_leave_types.update\",\n            \"employee_notes.create\",\n            \"employee_notes.delete\",\n            \"employee_notes.read\",\n            \"employee_notes.update\",\n            \"employee_payroll_settings.read\",\n            \"employee_payroll_settings.update\",\n            \"employee_pictures.create\",\n            \"employee_pictures.delete\",\n            \"employee_pictures.read\",\n            \"employee_projects.create\",\n            \"employee_projects.delete\",\n            \"employee_projects.read\",\n            \"employee_projects.update\",\n            \"employee_settings.management_settings\",\n            \"employee_settings.read\",\n            \"employee_settings.update\",\n            \"employee_skills.create\",\n            \"employee_skills.delete\",\n            \"employee_skills.read\",\n            \"employee_skills.report\",\n            \"employee_skills.update\",\n            \"employments.create\",\n            \"employments.delete\",\n            \"employments.read\",\n            \"employments.update\",\n            \"expense_documents.create\",\n            \"expense_documents.delete\",\n            \"expense_documents.read\",\n            \"expense_items.create\",\n            \"expense_items.delete\",\n            \"expense_items.read\",\n            \"expense_items.update\",\n            \"expenses.attribute.is_processed\",\n            \"expenses.create\",\n            \"expenses.delete\",\n            \"expenses.read\",\n            \"expenses.report\",\n            \"expenses.update\",\n            \"family_members.create\",\n            \"family_members.delete\",\n            \"family_members.read\",\n            \"family_members.update\",\n            \"form_answers.read\",\n            \"form_answers.update\",\n            \"form_documents.create\",\n            \"form_documents.delete\",\n            \"form_documents.read\",\n            \"form_viewers.create\",\n            \"form_viewers.delete\",\n            \"form_viewers.read\",\n            \"forms.create\",\n            \"forms.delete\",\n            \"forms.management_settings\",\n            \"forms.read\",\n            \"forms.update\",\n            \"goals.create\",\n            \"goals.delete\",\n            \"goals.read\",\n            \"goals.report\",\n            \"goals.update\",\n            \"leave_balance_adjustments.create\",\n            \"leave_balance_adjustments.delete\",\n            \"leave_balance_adjustments.read\",\n            \"leave_balance_adjustments.update\",\n            \"leave_balance_prorations.read\",\n            \"leave_balances.create\",\n            \"leave_balances.delete\",\n            \"leave_balances.read\",\n            \"leave_balances.report\",\n            \"leave_balances.update\",\n            \"leave_registrations.create\",\n            \"leave_registrations.delete\",\n            \"leave_registrations.read\",\n            \"leave_registrations.update\",\n            \"leave_requests.create\",\n            \"leave_requests.delete\",\n            \"leave_requests.read\",\n            \"leave_requests.update\",\n            \"leave_schemes.create\",\n            \"leave_schemes.delete\",\n            \"leave_schemes.read\",\n            \"leave_schemes.update\",\n            \"payroll_documents.create\",\n            \"payroll_documents.delete\",\n            \"payroll_documents.read\",\n            \"payroll_documents.read.unassigned\",\n            \"payroll_documents.update\",\n            \"positions.create\",\n            \"positions.delete\",\n            \"positions.read\",\n            \"positions.update\",\n            \"salaries.create\",\n            \"salaries.delete\",\n            \"salaries.read\",\n            \"salaries.report\",\n            \"salaries.update\",\n            \"sick_leave_registrations.attribute.do_auto_calculate\",\n            \"sick_leave_registrations.attribute.is_verified\",\n            \"sick_leave_registrations.create\",\n            \"sick_leave_registrations.delete\",\n            \"sick_leave_registrations.read\",\n            \"sick_leave_registrations.report\",\n            \"sick_leave_registrations.update\",\n            \"tasks.create\",\n            \"tasks.delete\",\n            \"tasks.read\",\n            \"tasks.read.unassigned\",\n            \"tasks.update\",\n            \"template_concepts.create\",\n            \"template_concepts.delete\",\n            \"template_concepts.read\",\n            \"template_concepts.update\",\n            \"terminations.create\",\n            \"terminations.delete\",\n            \"terminations.read\",\n            \"terminations.update\",\n            \"time_registrations.attribute.is_processed\",\n            \"time_registrations.create\",\n            \"time_registrations.delete\",\n            \"time_registrations.import\",\n            \"time_registrations.leave_balance_adjustment.create\",\n            \"time_registrations.leave_balance_adjustment.delete\",\n            \"time_registrations.read\",\n            \"time_registrations.report\",\n            \"time_registrations.update\",\n            \"trip_registrations.attribute.is_processed\",\n            \"trip_registrations.create\",\n            \"trip_registrations.delete\",\n            \"trip_registrations.import\",\n            \"trip_registrations.read\",\n            \"trip_registrations.report\",\n            \"trip_registrations.update\",\n            \"wage_components.create\",\n            \"wage_components.delete\",\n            \"wage_components.read\",\n            \"wage_components.update\",\n            \"work_location_statuses.attribute.is_processed\",\n            \"work_location_statuses.create\",\n            \"work_location_statuses.delete\",\n            \"work_location_statuses.read\",\n            \"work_location_statuses.report\",\n            \"work_location_statuses.update\",\n            \"work_schedules.create\",\n            \"work_schedules.delete\",\n            \"work_schedules.read\",\n            \"work_schedules.update\"\n        ],\n        \"salutation\": \"Mx.\"\n    }\n}"}],"_postman_id":"37f99a56-2b97-4b13-82be-ea8e778e10fb"},{"name":"Invite an employee","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"afc12ed0-5264-41d7-a147-e0d1051a3d4a"}}],"id":"ddb11dfc-5200-493c-b5a4-c5c16d6cdae6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"https://api.buddee.nl/employees/{{new_employee_id}}/invite?type=business&work_email=Franco_Langworth@gmail.com","description":"<p>Invites the employee to the Buddee platform if the employee does not have a user yet.<br /><strong>Note:</strong> the employee should have a work_email <strong>or</strong> personal_email.  </p>\n<p>When inviting an employee verify the type of e-mail to use business (work_email) or personal (personal_email).  </p>\n<p>When <em>work_email</em> or <em>personal_email</em> is sent to the /invite endpoint the employee will automatically be updated with these email adresses.</p>\n","urlObject":{"path":["employees","{{new_employee_id}}","invite"],"host":["https://api.buddee.nl"],"query":[{"description":{"content":"<p>business, personal</p>\n","type":"text/plain"},"key":"type","value":"business"},{"key":"work_email","value":"Jadyn92@gmail.com"}],"variable":[]}},"response":[{"id":"ac3067f0-8974-482a-9178-40a466985819","name":"Invite an employee","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.buddee.nl/employees/{{new_employee_id}}/invite?type=business&work_email=Antonina.Monahan2@gmail.com","host":["https://api.buddee.nl"],"path":["employees","{{new_employee_id}}","invite"],"query":[{"key":"type","value":"business","description":"business or personal","type":"text"},{"key":"work_email","value":"Kurt73@yahoo.com","description":"The email adress for the user","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 13:12:28 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 236442,\n        \"organization_id\": 14799,\n        \"user_id\": 157020,\n        \"employee_id\": 163474,\n        \"do_disable_2fa\": 0,\n        \"is_admin\": 0,\n        \"is_temp\": false,\n        \"is_terminated\": false,\n        \"created_at\": \"2024-12-02 13:12:28\",\n        \"updated_at\": \"2024-12-02 13:12:28\",\n        \"_permissions\": [\n            \"attribute.do_disable_2fa\",\n            \"attribute.is_admin\",\n            \"attribute.is_terminated\",\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"ddb11dfc-5200-493c-b5a4-c5c16d6cdae6"}],"id":"1e8b19ca-0183-4d73-9362-32097eb1c767","description":"<h3 id=\"sortables\">Sortables</h3>\n<p>Use these fields in the sort query param:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>full_name</code></td>\n<td>Sort by the employee's full name.</td>\n</tr>\n<tr>\n<td><code>full_name_alt</code></td>\n<td>Sort by an alternate version of the employee's full name.</td>\n</tr>\n<tr>\n<td><code>employment_date</code></td>\n<td>Sort by the employment start date.</td>\n</tr>\n<tr>\n<td><code>archived_at</code></td>\n<td>Sort by the archived date.</td>\n</tr>\n<tr>\n<td><code>department</code></td>\n<td>Sort by the department name and fallback to full name.</td>\n</tr>\n<tr>\n<td><code>employment</code></td>\n<td>Sort by employment type, fallback to full name. Includes active employment constraints.</td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td>Sort by location name and fallback to full name.</td>\n</tr>\n<tr>\n<td><code>manager</code></td>\n<td>Sort by manager's full name and fallback to employee's full name.</td>\n</tr>\n<tr>\n<td><code>number</code></td>\n<td>Sort by the numeric employee number. Casts the number to an integer for proper sorting.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h4 id=\"model\"><strong>Model</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Validation Rules</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>company_id</td>\n<td><code>integer</code></td>\n<td>ID of the company the employee belongs to</td>\n<td>Required, exists in the <code>companies</code> table</td>\n<td>Links the employee to a company.</td>\n</tr>\n<tr>\n<td>buddy_id</td>\n<td><code>integer</code></td>\n<td>ID of the buddy assigned to the employee</td>\n<td>Nullable, exists in the <code>employees</code> table</td>\n<td>Optional; references another employee.</td>\n</tr>\n<tr>\n<td>manager_id</td>\n<td><code>integer</code></td>\n<td>ID of the direct manager of the employee</td>\n<td>Nullable, exists in the <code>employees</code> table</td>\n<td>Optional; references another employee.</td>\n</tr>\n<tr>\n<td>indirect_manager_id</td>\n<td><code>integer</code></td>\n<td>ID of the indirect manager of the employee</td>\n<td>Nullable, exists in the <code>employees</code> table</td>\n<td>Optional; references another employee.</td>\n</tr>\n<tr>\n<td>hr_manager_id</td>\n<td><code>integer</code></td>\n<td>ID of the HR manager responsible for the employee</td>\n<td>Nullable, exists in the <code>employees</code> table</td>\n<td>Optional; references another employee.</td>\n</tr>\n<tr>\n<td>cost_center_id</td>\n<td><code>integer</code></td>\n<td>ID of the cost center</td>\n<td>Nullable, required_with:cost_unit_id, exists in the <code>cost_centers</code> table</td>\n<td>Required only if <code>cost_unit_id</code> is provided.</td>\n</tr>\n<tr>\n<td>cost_unit_id</td>\n<td><code>integer</code></td>\n<td>ID of the cost unit</td>\n<td>Nullable, exists in the <code>cost_units</code> table</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>first_name</td>\n<td><code>string</code></td>\n<td>Employee's first name</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td>initials</td>\n<td><code>string</code></td>\n<td>Employee's initials</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td><code>string</code></td>\n<td>Employee's last name</td>\n<td>Required</td>\n<td></td>\n</tr>\n<tr>\n<td>last_name_prefix</td>\n<td><code>string</code></td>\n<td>Prefix for the last name (e.g., \"van\")</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>last_name_composition</td>\n<td><code>string</code></td>\n<td>Composition of the last name</td>\n<td>Nullable, config:last_name_compositions</td>\n<td>Defines how the last name is composed.</td>\n</tr>\n<tr>\n<td>composed_last_name</td>\n<td><code>string</code></td>\n<td>Fully composed last name</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>composed_last_name_prefix</td>\n<td><code>string</code></td>\n<td>Prefix for the composed last name</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>gender</td>\n<td><code>string</code></td>\n<td>Gender of the employee</td>\n<td>Nullable, config:genders</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>number</td>\n<td><code>string</code></td>\n<td>Employee number</td>\n<td>Nullable, unique within the same company</td>\n<td></td>\n</tr>\n<tr>\n<td>nationality</td>\n<td><code>string</code></td>\n<td>Nationality of the employee</td>\n<td>Nullable, config:countries</td>\n<td></td>\n</tr>\n<tr>\n<td>national_id</td>\n<td><code>string</code></td>\n<td>National ID</td>\n<td>Nullable, national_id (required for NL nationality)</td>\n<td>Validates only for Dutch nationality or if unspecified.</td>\n</tr>\n<tr>\n<td>birth_place</td>\n<td><code>string</code></td>\n<td>Place of birth</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>birth_date</td>\n<td><code>date</code></td>\n<td>Date of birth</td>\n<td>Nullable, date_format:Y-m-d, before:today</td>\n<td>Must be a valid past date.</td>\n</tr>\n<tr>\n<td>marital_status</td>\n<td><code>string</code></td>\n<td>Marital status</td>\n<td>Nullable, config:marital_statuses</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>marital_date</td>\n<td><code>date</code></td>\n<td>Date of marital status change</td>\n<td>Nullable, date_format:Y-m-d</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>partner_last_name</td>\n<td><code>string</code></td>\n<td>Partner's last name</td>\n<td>Nullable, required based on last_name_composition</td>\n<td>Required in certain name compositions (e.g., partner_name).</td>\n</tr>\n<tr>\n<td>work_email</td>\n<td><code>string</code></td>\n<td>Work email address</td>\n<td>Nullable, email:filter</td>\n<td>Must be a valid email address.</td>\n</tr>\n<tr>\n<td>work_phone</td>\n<td><code>string</code></td>\n<td>Work phone number</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>work_phone_extension</td>\n<td><code>string</code></td>\n<td>Extension for the work phone</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>work_mobile</td>\n<td><code>string</code></td>\n<td>Mobile phone number for work</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>personal_email</td>\n<td><code>string</code></td>\n<td>Personal email address</td>\n<td>Nullable, email:filter</td>\n<td>Must be a valid email address.</td>\n</tr>\n<tr>\n<td>personal_phone</td>\n<td><code>string</code></td>\n<td>Personal phone number</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>personal_mobile</td>\n<td><code>string</code></td>\n<td>Personal mobile number</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>street</td>\n<td><code>string</code></td>\n<td>Street address</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>street_number</td>\n<td>Integer</td>\n<td>Street number</td>\n<td>Nullable, numeric (if country is NL)</td>\n<td>Optional unless the country is the Netherlands.</td>\n</tr>\n<tr>\n<td>street_number_suffix</td>\n<td><code>string</code></td>\n<td>Suffix for the street number</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>postal_code</td>\n<td><code>string</code></td>\n<td>Postal code</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>city</td>\n<td><code>string</code></td>\n<td>City</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>country</td>\n<td><code>string</code></td>\n<td>Country</td>\n<td>Nullable, config:countries</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>bank_account_holder</td>\n<td><code>string</code></td>\n<td>Name of the bank account holder</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>bank_account_iban</td>\n<td><code>string</code></td>\n<td>IBAN of the bank account</td>\n<td>Nullable, iban</td>\n<td>Must be a valid IBAN.</td>\n</tr>\n<tr>\n<td>emergency_contact_name</td>\n<td><code>string</code></td>\n<td>Name of the emergency contact</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>emergency_contact_relation</td>\n<td><code>string</code></td>\n<td>Relation of the emergency contact to the employee</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>emergency_contact_email</td>\n<td><code>string</code></td>\n<td>Email address of the emergency contact</td>\n<td>Nullable, email:filter</td>\n<td>Must be a valid email address.</td>\n</tr>\n<tr>\n<td>emergency_contact_phone</td>\n<td><code>string</code></td>\n<td>Phone number of the emergency contact</td>\n<td>None</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>hire_date</td>\n<td><code>date</code></td>\n<td>Date the employee was hired</td>\n<td>Nullable, date_format:Y-m-d, before_or_equal:employment_date</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>employment_date</td>\n<td><code>date</code></td>\n<td>Official start date of employment</td>\n<td>Required, date_format:Y-m-d</td>\n<td></td>\n</tr>\n<tr>\n<td>first_day_at_work_date</td>\n<td><code>date</code></td>\n<td>First working day</td>\n<td>Nullable, date_format:Y-m-d, after_or_equal:employment_date</td>\n<td>Optional.</td>\n</tr>\n<tr>\n<td>seniority_date</td>\n<td><code>date</code></td>\n<td>Seniority date</td>\n<td>Nullable, date_format:Y-m-d, before_or_equal:employment_date</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1e8b19ca-0183-4d73-9362-32097eb1c767"},{"name":"Leave","item":[{"name":"Leave types","item":[{"name":"Leave types","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"3d9e1280-eb21-4cc3-b7c9-0ca08b2d6e64"}}],"id":"e5ff555c-7981-4fbd-8a6a-c9799f9d7bc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/leave-types","description":"<p>Retrieves all leave types within this organization.</p>\n","urlObject":{"path":["leave-types"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"89e10c51-a427-445a-80b3-e70f401a0513","name":"leave request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/leave-requests?sort=start_date&employee_id=&leave_type_id=&active_in_period= &approval_status=","host":["https://api.buddee.nl"],"path":["leave-requests"],"query":[{"key":"sort","value":"start_date","type":"text"},{"key":"employee_id","value":"","description":"Filters by leave_requests.employee_id","type":"text"},{"key":"leave_type_id","value":"","description":"Filters by leave_requests.leave_type_id","type":"text"},{"key":"active_in_period","value":" ","type":"text"},{"key":"approval_status","value":"","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:42:24 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 144,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 196423,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-19\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-05 15:00:31\",\n            \"updated_at\": \"2021-06-17 12:29:01\",\n            \"approval\": {\n                \"id\": 119684,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196423,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week !\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-06-17 12:29:01\",\n                \"created_at\": \"2021-05-05 15:00:31\",\n                \"updated_at\": \"2021-06-17 12:29:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196393,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-29\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-30\",\n            \"end_time\": null,\n            \"created_at\": \"2021-04-29 08:54:47\",\n            \"updated_at\": \"2021-11-08 07:54:35\",\n            \"approval\": {\n                \"id\": 119654,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196393,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:35\",\n                \"created_at\": \"2021-04-29 08:54:47\",\n                \"updated_at\": \"2021-11-08 07:54:35\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-05-06\",\n            \"start_time\": null,\n            \"end_date\": \"2021-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-06 13:18:16\",\n            \"updated_at\": \"2021-11-08 07:54:26\",\n            \"approval\": {\n                \"id\": 119694,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, teveel mensen met vakantie\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:26\",\n                \"created_at\": \"2021-05-06 13:18:16\",\n                \"updated_at\": \"2021-11-08 07:54:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197276,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"15.50\",\n            \"reason\": null,\n            \"start_date\": \"2021-09-29\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2021-09-30\",\n            \"end_time\": \"16:30\",\n            \"created_at\": \"2021-09-29 10:45:14\",\n            \"updated_at\": \"2021-11-08 07:54:52\",\n            \"approval\": {\n                \"id\": 120506,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 197276,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:52\",\n                \"created_at\": \"2021-09-29 10:45:14\",\n                \"updated_at\": \"2021-11-08 07:54:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 198358,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg\",\n            \"start_date\": \"2022-02-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-02-12\",\n            \"end_time\": null,\n            \"created_at\": \"2022-02-10 10:38:19\",\n            \"updated_at\": \"2022-02-10 10:38:19\",\n            \"approval\": {\n                \"id\": 131288,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198358,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-02-10 10:38:40\",\n                \"created_at\": \"2022-02-10 10:38:19\",\n                \"updated_at\": \"2022-02-10 10:38:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198609,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Midweekje vakantie\",\n            \"start_date\": \"2022-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-01 11:24:16\",\n            \"updated_at\": \"2022-03-01 11:24:16\",\n            \"approval\": {\n                \"id\": 132354,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198609,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-01 11:24:33\",\n                \"created_at\": \"2022-03-01 11:24:16\",\n                \"updated_at\": \"2022-03-01 11:24:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-03-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-09 11:01:21\",\n            \"updated_at\": \"2022-03-09 11:01:21\",\n            \"approval\": {\n                \"id\": 132675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198705,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-23 00:00:05\",\n                \"created_at\": \"2022-03-09 11:01:21\",\n                \"updated_at\": \"2022-03-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 199761,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"6.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-05-20\",\n            \"start_time\": \"11:00\",\n            \"end_date\": \"2022-05-21\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2022-05-20 10:20:39\",\n            \"updated_at\": \"2022-05-20 10:20:39\",\n            \"approval\": {\n                \"id\": 137599,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 199761,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-05-20 10:20:43\",\n                \"created_at\": \"2022-05-20 10:20:39\",\n                \"updated_at\": \"2022-05-20 10:20:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200004,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-06-08\",\n            \"start_time\": null,\n            \"end_date\": \"2022-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-06-08 09:17:58\",\n            \"updated_at\": \"2022-06-08 09:17:58\",\n            \"approval\": {\n                \"id\": 139024,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200004,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-06-22 00:00:04\",\n                \"created_at\": \"2022-06-08 09:17:58\",\n                \"updated_at\": \"2022-06-22 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200468,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-06\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-05 11:13:08\",\n            \"updated_at\": \"2022-07-05 11:13:08\",\n            \"approval\": {\n                \"id\": 141383,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200468,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-19 00:00:04\",\n                \"created_at\": \"2022-07-05 11:13:08\",\n                \"updated_at\": \"2022-07-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200830,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-20 20:59:20\",\n            \"updated_at\": \"2022-07-20 20:59:20\",\n            \"approval\": {\n                \"id\": 142560,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200830,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-20 20:59:24\",\n                \"created_at\": \"2022-07-20 20:59:20\",\n                \"updated_at\": \"2022-07-20 20:59:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201545,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-01\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:23:19\",\n            \"updated_at\": \"2022-08-30 11:23:19\",\n            \"approval\": {\n                \"id\": 145567,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201545,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:23:19\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-08-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-10 12:48:54\",\n            \"updated_at\": \"2022-08-10 12:48:54\",\n            \"approval\": {\n                \"id\": 144205,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-08-16 08:39:24\",\n                \"created_at\": \"2022-08-10 12:48:54\",\n                \"updated_at\": \"2022-08-16 08:39:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201540,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 08:06:47\",\n            \"updated_at\": \"2022-08-30 08:06:47\",\n            \"approval\": {\n                \"id\": 145544,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201540,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:16:39\",\n                \"created_at\": \"2022-08-30 08:06:47\",\n                \"updated_at\": \"2022-09-02 08:16:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201543,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:17:13\",\n            \"updated_at\": \"2022-08-30 11:17:13\",\n            \"approval\": {\n                \"id\": 145565,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201543,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:04\",\n                \"created_at\": \"2022-08-30 11:17:13\",\n                \"updated_at\": \"2022-09-13 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201544,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:21:04\",\n            \"updated_at\": \"2022-08-30 11:21:04\",\n            \"approval\": {\n                \"id\": 145566,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201544,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:21:04\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201573,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-02\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-02\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-31 08:06:15\",\n            \"updated_at\": \"2022-08-31 08:06:15\",\n            \"approval\": {\n                \"id\": 145712,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201573,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-14 00:00:04\",\n                \"created_at\": \"2022-08-31 08:06:15\",\n                \"updated_at\": \"2022-09-14 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-02 08:17:33\",\n            \"updated_at\": \"2022-09-02 08:17:33\",\n            \"approval\": {\n                \"id\": 146110,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:17:42\",\n                \"created_at\": \"2022-09-02 08:17:33\",\n                \"updated_at\": \"2022-09-02 08:17:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201738,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-07\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-06 11:14:48\",\n            \"updated_at\": \"2022-09-06 11:14:48\",\n            \"approval\": {\n                \"id\": 146619,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201738,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-20 00:00:05\",\n                \"created_at\": \"2022-09-06 11:14:48\",\n                \"updated_at\": \"2022-09-20 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201677,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-09-09\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2022-09-12\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2022-09-05 08:44:06\",\n            \"updated_at\": \"2022-09-05 08:44:06\",\n            \"approval\": {\n                \"id\": 146480,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201677,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-19 00:00:04\",\n                \"created_at\": \"2022-09-05 08:44:06\",\n                \"updated_at\": \"2022-09-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201790,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-12\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-16\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-08 09:52:59\",\n            \"updated_at\": \"2022-09-08 09:52:59\",\n            \"approval\": {\n                \"id\": 146839,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201790,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-17 11:01:23\",\n                \"created_at\": \"2022-09-08 09:52:59\",\n                \"updated_at\": \"2022-10-17 11:01:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202156,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-29 07:46:38\",\n            \"updated_at\": \"2022-09-29 07:46:38\",\n            \"approval\": {\n                \"id\": 149079,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202156,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-13 00:00:03\",\n                \"created_at\": \"2022-09-29 07:46:38\",\n                \"updated_at\": \"2022-10-13 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202655,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-19 08:56:47\",\n            \"updated_at\": \"2022-10-19 08:56:47\",\n            \"approval\": {\n                \"id\": 151650,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202655,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:02:58\",\n                \"created_at\": \"2022-10-19 08:56:47\",\n                \"updated_at\": \"2022-10-26 09:02:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202635,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-18 13:43:51\",\n            \"updated_at\": \"2022-10-18 13:43:51\",\n            \"approval\": {\n                \"id\": 151578,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202635,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:40\",\n                \"created_at\": \"2022-10-18 13:43:51\",\n                \"updated_at\": \"2022-10-26 09:03:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-20 11:14:13\",\n            \"updated_at\": \"2022-10-20 11:14:13\",\n            \"approval\": {\n                \"id\": 151829,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:04\",\n                \"created_at\": \"2022-10-20 11:14:13\",\n                \"updated_at\": \"2022-10-26 09:03:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202863,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-27\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 08:29:42\",\n            \"updated_at\": \"2022-10-26 08:29:42\",\n            \"approval\": {\n                \"id\": 152437,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202863,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:12\",\n                \"created_at\": \"2022-10-26 08:29:42\",\n                \"updated_at\": \"2022-10-26 09:03:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202896,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-04\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-27 09:45:36\",\n            \"updated_at\": \"2022-10-27 09:45:36\",\n            \"approval\": {\n                \"id\": 152561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202896,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-10 00:00:04\",\n                \"created_at\": \"2022-10-27 09:45:36\",\n                \"updated_at\": \"2022-11-10 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203875,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"176.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 13:43:41\",\n            \"updated_at\": \"2022-11-24 13:43:41\",\n            \"approval\": {\n                \"id\": 156663,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203875,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Mag niet\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 13:44:02\",\n                \"created_at\": \"2022-11-24 13:43:41\",\n                \"updated_at\": \"2022-11-24 13:44:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-09 09:09:37\",\n            \"updated_at\": \"2022-11-09 09:09:37\",\n            \"approval\": {\n                \"id\": 154517,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 14:37:58\",\n                \"created_at\": \"2022-11-09 09:09:37\",\n                \"updated_at\": \"2022-11-09 14:37:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203869,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-21\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 12:40:05\",\n            \"updated_at\": \"2022-11-24 12:40:05\",\n            \"approval\": {\n                \"id\": 156651,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203869,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 12:40:38\",\n                \"created_at\": \"2022-11-24 12:40:05\",\n                \"updated_at\": \"2022-11-24 12:40:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203982,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-28\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:50:08\",\n            \"updated_at\": \"2022-11-28 13:50:08\",\n            \"approval\": {\n                \"id\": 157133,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203982,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-01 10:37:47\",\n                \"created_at\": \"2022-11-28 13:50:08\",\n                \"updated_at\": \"2022-12-01 10:37:47\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203637,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"208.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-17 13:38:31\",\n            \"updated_at\": \"2022-11-17 13:38:31\",\n            \"approval\": {\n                \"id\": 155624,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203637,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-17 13:39:02\",\n                \"created_at\": \"2022-11-17 13:38:31\",\n                \"updated_at\": \"2022-11-17 13:39:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203915,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-25 13:29:01\",\n            \"updated_at\": \"2022-11-25 13:29:01\",\n            \"approval\": {\n                \"id\": 156812,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203915,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"test\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-25 13:29:41\",\n                \"created_at\": \"2022-11-25 13:29:01\",\n                \"updated_at\": \"2022-11-25 13:29:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 09:25:09\",\n            \"updated_at\": \"2022-12-20 09:25:09\",\n            \"approval\": {\n                \"id\": 160424,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:04\",\n                \"created_at\": \"2022-12-20 09:25:09\",\n                \"updated_at\": \"2023-01-03 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204741,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Dagje vrij\",\n            \"start_date\": \"2022-12-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:07:53\",\n            \"updated_at\": \"2022-12-20 13:07:53\",\n            \"approval\": {\n                \"id\": 160494,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204741,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:07:53\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203981,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:36:08\",\n            \"updated_at\": \"2022-11-28 13:36:08\",\n            \"approval\": {\n                \"id\": 157128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203981,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-28 13:36:58\",\n                \"created_at\": \"2022-11-28 13:36:08\",\n                \"updated_at\": \"2022-11-28 13:36:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204488,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-12 13:46:47\",\n            \"updated_at\": \"2022-12-12 13:46:47\",\n            \"approval\": {\n                \"id\": 159370,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204488,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-26 00:00:04\",\n                \"created_at\": \"2022-12-12 13:46:47\",\n                \"updated_at\": \"2022-12-26 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204742,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"vakantie\",\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:17:40\",\n            \"updated_at\": \"2022-12-20 13:17:40\",\n            \"approval\": {\n                \"id\": 160495,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204742,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-20 13:18:31\",\n                \"created_at\": \"2022-12-20 13:17:40\",\n                \"updated_at\": \"2022-12-20 13:18:31\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204823,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-22 10:11:11\",\n            \"updated_at\": \"2022-12-22 10:11:11\",\n            \"approval\": {\n                \"id\": 160843,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204823,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-22 10:11:56\",\n                \"created_at\": \"2022-12-22 10:11:11\",\n                \"updated_at\": \"2022-12-22 10:11:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204968,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-29 08:35:46\",\n            \"updated_at\": \"2022-12-29 08:35:46\",\n            \"approval\": {\n                \"id\": 161549,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204968,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, want dan zijn er al 2 collega's weg\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-10 14:45:07\",\n                \"created_at\": \"2022-12-29 08:35:46\",\n                \"updated_at\": \"2023-01-10 14:45:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204802,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-07\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-21 13:09:28\",\n            \"updated_at\": \"2022-12-21 13:09:28\",\n            \"approval\": {\n                \"id\": 160675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204802,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-21 13:09:38\",\n                \"created_at\": \"2022-12-21 13:09:28\",\n                \"updated_at\": \"2022-12-21 13:09:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204743,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:20:23\",\n            \"updated_at\": \"2022-12-20 13:20:23\",\n            \"approval\": {\n                \"id\": 160496,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204743,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:20:23\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 205663,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-13 14:04:01\",\n            \"updated_at\": \"2023-01-13 14:04:01\",\n            \"approval\": {\n                \"id\": 163964,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205663,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-13 14:04:25\",\n                \"created_at\": \"2023-01-13 14:04:01\",\n                \"updated_at\": \"2023-01-13 14:04:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205506,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-27\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-11 11:11:05\",\n            \"updated_at\": \"2023-01-11 11:11:05\",\n            \"approval\": {\n                \"id\": 163528,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205506,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-11 11:11:49\",\n                \"created_at\": \"2023-01-11 11:11:05\",\n                \"updated_at\": \"2023-01-11 11:11:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-19 12:14:43\",\n            \"updated_at\": \"2023-01-19 12:14:43\",\n            \"approval\": {\n                \"id\": 164756,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-19 12:15:19\",\n                \"created_at\": \"2023-01-19 12:14:43\",\n                \"updated_at\": \"2023-01-19 12:15:19\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 206245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"104.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-30 12:44:46\",\n            \"updated_at\": \"2023-01-30 12:44:46\",\n            \"approval\": {\n                \"id\": 166418,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-30 12:45:12\",\n                \"created_at\": \"2023-01-30 12:44:46\",\n                \"updated_at\": \"2023-01-30 12:45:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202867,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:04:02\",\n            \"updated_at\": \"2022-10-26 09:04:02\",\n            \"approval\": {\n                \"id\": 152456,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202867,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:04:04\",\n                \"created_at\": \"2022-10-26 09:04:02\",\n                \"updated_at\": \"2022-10-26 09:04:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 206942,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-20\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-02-13 13:09:59\",\n            \"updated_at\": \"2023-02-13 13:09:59\",\n            \"approval\": {\n                \"id\": 169385,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206942,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-02-27 00:00:04\",\n                \"created_at\": \"2023-02-13 13:09:59\",\n                \"updated_at\": \"2023-02-27 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204539,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-13 12:39:47\",\n            \"updated_at\": \"2022-12-13 12:39:47\",\n            \"approval\": {\n                \"id\": 159552,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204539,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-13 12:40:32\",\n                \"created_at\": \"2022-12-13 12:39:47\",\n                \"updated_at\": \"2022-12-13 12:40:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 208038,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-06\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-09 10:11:34\",\n            \"updated_at\": \"2023-03-09 10:11:34\",\n            \"approval\": {\n                \"id\": 174513,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208038,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-09 10:12:41\",\n                \"created_at\": \"2023-03-09 10:11:34\",\n                \"updated_at\": \"2023-03-09 10:12:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 208946,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-04-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-31 12:09:32\",\n            \"updated_at\": \"2023-03-31 12:09:32\",\n            \"approval\": {\n                \"id\": 179569,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208946,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-31 12:09:54\",\n                \"created_at\": \"2023-03-31 12:09:32\",\n                \"updated_at\": \"2023-03-31 12:09:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202868,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-05-07\",\n            \"start_time\": null,\n            \"end_date\": \"2023-05-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:09:48\",\n            \"updated_at\": \"2022-10-26 09:09:48\",\n            \"approval\": {\n                \"id\": 152457,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202868,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 00:00:03\",\n                \"created_at\": \"2022-10-26 09:09:48\",\n                \"updated_at\": \"2022-11-09 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 212983,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-05\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-02 11:44:10\",\n            \"updated_at\": \"2023-06-02 11:44:10\",\n            \"approval\": {\n                \"id\": 198178,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 212983,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-16 00:00:04\",\n                \"created_at\": \"2023-06-02 11:44:10\",\n                \"updated_at\": \"2023-06-16 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 214487,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-19 10:50:57\",\n            \"updated_at\": \"2023-06-19 10:50:57\",\n            \"approval\": {\n                \"id\": 203643,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 214487,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-27 10:21:54\",\n                \"created_at\": \"2023-06-19 10:50:57\",\n                \"updated_at\": \"2023-06-27 10:21:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216044,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-10 07:31:44\",\n            \"updated_at\": \"2023-07-10 07:31:44\",\n            \"approval\": {\n                \"id\": 212048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216044,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-24 00:00:04\",\n                \"created_at\": \"2023-07-10 07:31:44\",\n                \"updated_at\": \"2023-07-24 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216941,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-21\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-21 12:31:36\",\n            \"updated_at\": \"2023-07-21 12:31:36\",\n            \"approval\": {\n                \"id\": 215869,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216941,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-08-04 00:00:04\",\n                \"created_at\": \"2023-07-21 12:31:36\",\n                \"updated_at\": \"2023-08-04 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216305,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-24\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-12 14:11:34\",\n            \"updated_at\": \"2023-07-12 14:11:34\",\n            \"approval\": {\n                \"id\": 213215,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216305,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-12 14:11:38\",\n                \"created_at\": \"2023-07-12 14:11:34\",\n                \"updated_at\": \"2023-07-12 14:11:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 219061,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 193188,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-08-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-08-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-08-25 08:41:46\",\n            \"updated_at\": \"2023-08-25 08:41:46\",\n            \"approval\": {\n                \"id\": 226086,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 219061,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-01 11:11:59\",\n                \"created_at\": \"2023-08-25 08:41:46\",\n                \"updated_at\": \"2023-11-01 11:11:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233018,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2023-09-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-17\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-08 08:24:56\",\n            \"updated_at\": \"2024-01-19 14:28:17\",\n            \"approval\": {\n                \"id\": 280187,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 233018,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-19 14:28:22\",\n                \"created_at\": \"2024-01-08 08:24:56\",\n                \"updated_at\": \"2024-01-19 14:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-15\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-15\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-15 12:58:37\",\n            \"updated_at\": \"2023-09-15 12:58:37\",\n            \"approval\": {\n                \"id\": 234343,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-29 00:00:05\",\n                \"created_at\": \"2023-09-15 12:58:37\",\n                \"updated_at\": \"2023-09-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-18 10:12:41\",\n            \"updated_at\": \"2023-09-18 10:12:41\",\n            \"approval\": {\n                \"id\": 234797,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-18 10:13:10\",\n                \"created_at\": \"2023-09-18 10:12:41\",\n                \"updated_at\": \"2023-09-18 10:13:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 221739,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-22\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-22 09:10:24\",\n            \"updated_at\": \"2023-09-22 09:10:24\",\n            \"approval\": {\n                \"id\": 236692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221739,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-06 00:00:05\",\n                \"created_at\": \"2023-09-22 09:10:24\",\n                \"updated_at\": \"2023-10-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221853,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-25 09:48:04\",\n            \"updated_at\": \"2023-09-25 09:48:04\",\n            \"approval\": {\n                \"id\": 237220,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221853,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-09 00:00:06\",\n                \"created_at\": \"2023-09-25 09:48:04\",\n                \"updated_at\": \"2023-10-09 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 222389,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-29\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-29 11:21:19\",\n            \"updated_at\": \"2023-09-29 11:21:19\",\n            \"approval\": {\n                \"id\": 239239,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 222389,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-13 00:00:05\",\n                \"created_at\": \"2023-09-29 11:21:19\",\n                \"updated_at\": \"2023-10-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 224376,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-10-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-16 09:38:16\",\n            \"updated_at\": \"2023-10-16 09:38:16\",\n            \"approval\": {\n                \"id\": 246156,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 224376,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-30 00:00:05\",\n                \"created_at\": \"2023-10-16 09:38:16\",\n                \"updated_at\": \"2023-10-30 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 225855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-31 10:00:46\",\n            \"updated_at\": \"2023-10-31 10:00:46\",\n            \"approval\": {\n                \"id\": 251894,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 225855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-31 10:00:49\",\n                \"created_at\": \"2023-10-31 10:00:46\",\n                \"updated_at\": \"2023-10-31 10:00:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226557,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg met gezin\",\n            \"start_date\": \"2023-11-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-13\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:40:00\",\n            \"updated_at\": \"2023-11-07 08:49:31\",\n            \"approval\": {\n                \"id\": 255010,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 226557,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-07 09:00:22\",\n                \"created_at\": \"2023-11-07 08:40:00\",\n                \"updated_at\": \"2023-11-07 09:00:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-14 11:35:15\",\n            \"updated_at\": \"2023-11-14 11:35:15\",\n            \"approval\": {\n                \"id\": 257858,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 227435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-14 11:35:20\",\n                \"created_at\": \"2023-11-14 11:35:15\",\n                \"updated_at\": \"2023-11-14 11:35:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227658,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-16 10:16:43\",\n            \"updated_at\": \"2023-11-16 10:16:43\",\n            \"approval\": {\n                \"id\": 258821,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 227658,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-30 00:00:04\",\n                \"created_at\": \"2023-11-16 10:16:43\",\n                \"updated_at\": \"2023-11-30 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 228261,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-22 09:42:12\",\n            \"updated_at\": \"2023-11-22 09:42:12\",\n            \"approval\": {\n                \"id\": 260903,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 228261,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-06 00:00:05\",\n                \"created_at\": \"2023-11-22 09:42:12\",\n                \"updated_at\": \"2023-12-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227550,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"29.42\",\n            \"reason\": \"Ski vakantie\",\n            \"start_date\": \"2023-11-30\",\n            \"start_time\": \"12:35\",\n            \"end_date\": \"2023-12-07\",\n            \"end_time\": \"10:00\",\n            \"created_at\": \"2023-11-15 10:37:10\",\n            \"updated_at\": \"2023-11-15 10:37:10\",\n            \"approval\": {\n                \"id\": 258393,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 227550,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Graag andere week ivm vakantie rest van het team\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-15 10:38:52\",\n                \"created_at\": \"2023-11-15 10:37:10\",\n                \"updated_at\": \"2023-11-15 10:38:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 229436,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-08\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2023-12-12\",\n            \"end_time\": \"14:00\",\n            \"created_at\": \"2023-12-04 09:52:03\",\n            \"updated_at\": \"2023-12-04 11:45:07\",\n            \"approval\": {\n                \"id\": 266069,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 229436,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-18 00:00:07\",\n                \"created_at\": \"2023-12-04 09:52:03\",\n                \"updated_at\": \"2023-12-18 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231027,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-18\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:01:49\",\n            \"updated_at\": \"2023-12-18 10:01:49\",\n            \"approval\": {\n                \"id\": 272214,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 231027,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:08\",\n                \"created_at\": \"2023-12-18 10:01:49\",\n                \"updated_at\": \"2024-01-01 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226555,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Skivakantie\",\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-01\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:38:16\",\n            \"updated_at\": \"2023-11-07 08:38:16\",\n            \"approval\": {\n                \"id\": 255008,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 226555,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-21 00:00:05\",\n                \"created_at\": \"2023-11-07 08:38:16\",\n                \"updated_at\": \"2023-11-21 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231028,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-05\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:02:17\",\n            \"updated_at\": \"2023-12-18 10:02:17\",\n            \"approval\": {\n                \"id\": 272215,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 231028,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:09\",\n                \"created_at\": \"2023-12-18 10:02:17\",\n                \"updated_at\": \"2024-01-01 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 232281,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": \"Wintersport\",\n            \"start_date\": \"2024-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-02 11:57:58\",\n            \"updated_at\": \"2024-01-08 08:25:36\",\n            \"approval\": {\n                \"id\": 277252,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 232281,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-08 08:25:38\",\n                \"created_at\": \"2024-01-02 11:57:58\",\n                \"updated_at\": \"2024-01-08 08:25:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233565,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"88.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2024-01-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-09 09:54:16\",\n            \"updated_at\": \"2024-01-09 09:54:16\",\n            \"approval\": {\n                \"id\": 281330,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 233565,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-23 00:00:05\",\n                \"created_at\": \"2024-01-09 09:54:16\",\n                \"updated_at\": \"2024-01-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 236090,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-23 12:43:38\",\n            \"updated_at\": \"2024-01-23 12:43:38\",\n            \"approval\": {\n                \"id\": 289590,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 236090,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-01 08:57:14\",\n                \"created_at\": \"2024-01-23 12:43:38\",\n                \"updated_at\": \"2024-02-01 08:57:14\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"120.00\",\n            \"reason\": \"wispo\",\n            \"start_date\": \"2024-02-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 08:59:15\",\n            \"updated_at\": \"2024-02-02 08:59:15\",\n            \"approval\": {\n                \"id\": 296759,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 237722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-02 15:15:49\",\n                \"created_at\": \"2024-02-02 08:59:15\",\n                \"updated_at\": \"2024-02-02 15:15:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237724,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:01:04\",\n            \"updated_at\": \"2024-02-02 09:01:04\",\n            \"approval\": {\n                \"id\": 296761,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 237724,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:07\",\n                \"created_at\": \"2024-02-02 09:01:04\",\n                \"updated_at\": \"2024-02-16 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237723,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-21\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:00:32\",\n            \"updated_at\": \"2024-02-02 09:00:32\",\n            \"approval\": {\n                \"id\": 296760,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 237723,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:06\",\n                \"created_at\": \"2024-02-02 09:00:32\",\n                \"updated_at\": \"2024-02-16 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 239730,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-15\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-02-17\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-02-15 09:25:36\",\n            \"updated_at\": \"2024-02-15 09:25:36\",\n            \"approval\": {\n                \"id\": 305251,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 239730,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-29 00:00:05\",\n                \"created_at\": \"2024-02-15 09:25:36\",\n                \"updated_at\": \"2024-02-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 240718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2024-02-22 10:10:07\",\n            \"updated_at\": \"2024-02-22 10:10:07\",\n            \"approval\": {\n                \"id\": 309128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 240718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-06 09:16:56\",\n                \"created_at\": \"2024-02-22 10:10:07\",\n                \"updated_at\": \"2024-03-06 09:16:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 241964,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-04 08:12:31\",\n            \"updated_at\": \"2024-03-04 08:12:31\",\n            \"approval\": {\n                \"id\": 315469,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 241964,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-04 08:12:33\",\n                \"created_at\": \"2024-03-04 08:12:31\",\n                \"updated_at\": \"2024-03-04 08:12:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-03-07\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-11\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-03-07 09:27:23\",\n            \"updated_at\": \"2024-03-07 09:27:23\",\n            \"approval\": {\n                \"id\": 318692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-07 09:27:44\",\n                \"created_at\": \"2024-03-07 09:27:23\",\n                \"updated_at\": \"2024-03-07 09:27:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243183,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-15\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-11 14:43:29\",\n            \"updated_at\": \"2024-03-11 14:43:29\",\n            \"approval\": {\n                \"id\": 321174,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 243183,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-11 14:43:44\",\n                \"created_at\": \"2024-03-11 14:43:29\",\n                \"updated_at\": \"2024-03-11 14:43:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243676,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-13 16:11:43\",\n            \"updated_at\": \"2024-03-13 16:11:43\",\n            \"approval\": {\n                \"id\": 323295,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 243676,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 00:00:05\",\n                \"created_at\": \"2024-03-13 16:11:43\",\n                \"updated_at\": \"2024-03-27 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 244168,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-18 08:37:48\",\n            \"updated_at\": \"2024-03-18 08:37:48\",\n            \"approval\": {\n                \"id\": 325872,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 244168,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-18 08:37:54\",\n                \"created_at\": \"2024-03-18 08:37:48\",\n                \"updated_at\": \"2024-03-18 08:37:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-07 13:57:20\",\n            \"updated_at\": \"2024-03-07 13:57:20\",\n            \"approval\": {\n                \"id\": 318993,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242706,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:49:48\",\n                \"created_at\": \"2024-03-07 13:57:20\",\n                \"updated_at\": \"2024-03-25 12:49:48\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 245564,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-25 12:50:20\",\n            \"updated_at\": \"2024-03-25 12:50:20\",\n            \"approval\": {\n                \"id\": 330841,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 245564,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:50:28\",\n                \"created_at\": \"2024-03-25 12:50:20\",\n                \"updated_at\": \"2024-03-25 12:50:28\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245813,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-26\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:42:07\",\n            \"updated_at\": \"2024-03-26 13:42:07\",\n            \"approval\": {\n                \"id\": 331804,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245813,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-26 13:42:11\",\n                \"created_at\": \"2024-03-26 13:42:07\",\n                \"updated_at\": \"2024-03-26 13:42:11\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245883,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-27 08:25:04\",\n            \"updated_at\": \"2024-03-27 08:25:04\",\n            \"approval\": {\n                \"id\": 332177,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245883,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 08:25:08\",\n                \"created_at\": \"2024-03-27 08:25:04\",\n                \"updated_at\": \"2024-03-27 08:25:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245737,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Goede Vrijdag\",\n            \"start_date\": \"2024-03-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 09:43:02\",\n            \"updated_at\": \"2024-03-26 09:43:02\",\n            \"approval\": {\n                \"id\": 331561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 245737,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-09 00:00:05\",\n                \"created_at\": \"2024-03-26 09:43:02\",\n                \"updated_at\": \"2024-04-09 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245812,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:41:31\",\n            \"updated_at\": \"2024-04-02 15:27:51\",\n            \"approval\": {\n                \"id\": 331803,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 245812,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-02 15:28:22\",\n                \"created_at\": \"2024-03-26 13:41:31\",\n                \"updated_at\": \"2024-04-02 15:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247497,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-08\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-08 07:57:21\",\n            \"updated_at\": \"2024-04-08 07:57:21\",\n            \"approval\": {\n                \"id\": 340443,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247497,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-08 07:57:23\",\n                \"created_at\": \"2024-04-08 07:57:21\",\n                \"updated_at\": \"2024-04-08 07:57:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 248287,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-12 08:04:30\",\n            \"updated_at\": \"2024-04-12 08:04:30\",\n            \"approval\": {\n                \"id\": 344053,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 248287,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-12 08:04:33\",\n                \"created_at\": \"2024-04-12 08:04:30\",\n                \"updated_at\": \"2024-04-12 08:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247091,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-04 12:22:36\",\n            \"updated_at\": \"2024-04-15 07:50:53\",\n            \"approval\": {\n                \"id\": 338597,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247091,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-15 07:50:55\",\n                \"created_at\": \"2024-04-04 12:22:36\",\n                \"updated_at\": \"2024-04-15 07:50:55\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249894,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-22 12:43:23\",\n            \"updated_at\": \"2024-04-22 12:43:23\",\n            \"approval\": {\n                \"id\": 350377,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249894,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 00:00:05\",\n                \"created_at\": \"2024-04-22 12:43:23\",\n                \"updated_at\": \"2024-05-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249343,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:23:47\",\n            \"updated_at\": \"2024-04-18 11:23:47\",\n            \"approval\": {\n                \"id\": 348134,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249343,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-18 11:23:53\",\n                \"created_at\": \"2024-04-18 11:23:47\",\n                \"updated_at\": \"2024-04-18 11:23:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249345,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:24:09\",\n            \"updated_at\": \"2024-04-25 11:59:59\",\n            \"approval\": {\n                \"id\": 348136,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 249345,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-25 12:00:02\",\n                \"created_at\": \"2024-04-18 11:24:09\",\n                \"updated_at\": \"2024-04-25 12:00:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251414,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-05-01\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-05-06\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-05-01 11:14:35\",\n            \"updated_at\": \"2024-05-01 11:14:35\",\n            \"approval\": {\n                \"id\": 357345,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251414,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-02 13:17:15\",\n                \"created_at\": \"2024-05-01 11:14:35\",\n                \"updated_at\": \"2024-05-02 13:17:15\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251131,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:39:53\",\n            \"updated_at\": \"2024-04-30 07:39:53\",\n            \"approval\": {\n                \"id\": 355572,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 251131,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:39:56\",\n                \"created_at\": \"2024-04-30 07:39:53\",\n                \"updated_at\": \"2024-04-30 07:39:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251134,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-09\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-10\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:40:54\",\n            \"updated_at\": \"2024-04-30 07:40:54\",\n            \"approval\": {\n                \"id\": 355577,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251134,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:40:57\",\n                \"created_at\": \"2024-04-30 07:40:54\",\n                \"updated_at\": \"2024-04-30 07:40:57\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251136,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:42:03\",\n            \"updated_at\": \"2024-04-30 07:42:03\",\n            \"approval\": {\n                \"id\": 355583,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 251136,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:42:07\",\n                \"created_at\": \"2024-04-30 07:42:03\",\n                \"updated_at\": \"2024-04-30 07:42:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253612,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:08:35\",\n            \"updated_at\": \"2024-05-15 12:08:35\",\n            \"approval\": {\n                \"id\": 366223,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 253612,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-15 12:08:45\",\n                \"created_at\": \"2024-05-15 12:08:35\",\n                \"updated_at\": \"2024-05-15 12:08:45\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253613,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:09:38\",\n            \"updated_at\": \"2024-05-15 12:09:38\",\n            \"approval\": {\n                \"id\": 366225,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 253613,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-29 00:00:07\",\n                \"created_at\": \"2024-05-15 12:09:38\",\n                \"updated_at\": \"2024-05-29 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253819,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191307,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-16 11:21:06\",\n            \"updated_at\": \"2024-05-16 11:21:06\",\n            \"approval\": {\n                \"id\": 366921,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 253819,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 145942,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-16 11:21:08\",\n                \"created_at\": \"2024-05-16 11:21:06\",\n                \"updated_at\": \"2024-05-16 11:21:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 250639,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-21\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-26 08:50:58\",\n            \"updated_at\": \"2024-05-06 08:00:36\",\n            \"approval\": {\n                \"id\": 353507,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 250639,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 08:00:39\",\n                \"created_at\": \"2024-04-26 08:50:58\",\n                \"updated_at\": \"2024-05-06 08:00:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 255715,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-30\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-04\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-30 10:45:10\",\n            \"updated_at\": \"2024-05-30 10:45:10\",\n            \"approval\": {\n                \"id\": 375237,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 255715,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 09:00:41\",\n                \"created_at\": \"2024-05-30 10:45:10\",\n                \"updated_at\": \"2024-06-10 09:00:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 256926,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-07 14:21:28\",\n            \"updated_at\": \"2024-06-07 14:21:28\",\n            \"approval\": {\n                \"id\": 382306,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 256926,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-07 14:21:32\",\n                \"created_at\": \"2024-06-07 14:21:28\",\n                \"updated_at\": \"2024-06-07 14:21:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257084,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-14\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:34:38\",\n            \"updated_at\": \"2024-06-10 07:34:48\",\n            \"approval\": {\n                \"id\": 383048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257084,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:34:59\",\n                \"created_at\": \"2024-06-10 07:34:38\",\n                \"updated_at\": \"2024-06-10 07:34:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257474,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-11 13:23:11\",\n            \"updated_at\": \"2024-06-11 13:23:11\",\n            \"approval\": {\n                \"id\": 384784,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257474,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-19 08:19:42\",\n                \"created_at\": \"2024-06-11 13:23:11\",\n                \"updated_at\": \"2024-06-19 08:19:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258138,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"midweekje met de vrouw\",\n            \"start_date\": \"2024-06-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-17 09:17:50\",\n            \"updated_at\": \"2024-06-17 09:17:50\",\n            \"approval\": {\n                \"id\": 388429,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 258138,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-17 09:18:25\",\n                \"created_at\": \"2024-06-17 09:17:50\",\n                \"updated_at\": \"2024-06-17 09:18:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257086,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:35:23\",\n            \"updated_at\": \"2024-06-10 07:35:23\",\n            \"approval\": {\n                \"id\": 383050,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 257086,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:35:26\",\n                \"created_at\": \"2024-06-10 07:35:23\",\n                \"updated_at\": \"2024-06-10 07:35:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259520,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:11\",\n            \"updated_at\": \"2024-06-25 07:34:11\",\n            \"approval\": {\n                \"id\": 394199,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259520,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-25 07:34:16\",\n                \"created_at\": \"2024-06-25 07:34:11\",\n                \"updated_at\": \"2024-06-25 07:34:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259524,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:35\",\n            \"updated_at\": \"2024-06-25 07:34:35\",\n            \"approval\": {\n                \"id\": 394203,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 259524,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 12:05:40\",\n                \"created_at\": \"2024-06-25 07:34:35\",\n                \"updated_at\": \"2024-07-05 12:05:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 259373,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"12.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-24 13:39:40\",\n            \"updated_at\": \"2024-07-02 09:26:16\",\n            \"approval\": {\n                \"id\": 393668,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 259373,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-08 00:00:05\",\n                \"created_at\": \"2024-06-24 13:39:40\",\n                \"updated_at\": \"2024-07-08 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259685,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 11:27:15\",\n            \"updated_at\": \"2024-07-02 09:25:42\",\n            \"approval\": {\n                \"id\": 394542,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259685,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 00:00:08\",\n                \"created_at\": \"2024-06-25 11:27:15\",\n                \"updated_at\": \"2024-07-09 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-31\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:50:07\",\n            \"updated_at\": \"2024-07-09 11:50:07\",\n            \"approval\": {\n                \"id\": 405825,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 262245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:50:10\",\n                \"created_at\": \"2024-07-09 11:50:07\",\n                \"updated_at\": \"2024-07-09 11:50:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262244,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:49:21\",\n            \"updated_at\": \"2024-07-09 11:49:21\",\n            \"approval\": {\n                \"id\": 405824,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 262244,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 12:28:17\",\n                \"created_at\": \"2024-07-09 11:49:21\",\n                \"updated_at\": \"2024-07-09 12:28:17\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 261664,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-05 10:35:54\",\n            \"updated_at\": \"2024-07-05 10:35:54\",\n            \"approval\": {\n                \"id\": 403271,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 261664,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 10:36:03\",\n                \"created_at\": \"2024-07-05 10:35:54\",\n                \"updated_at\": \"2024-07-05 10:36:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258953,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191305,\n            \"hours\": \"72.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-21 09:37:28\",\n            \"updated_at\": \"2024-06-21 09:37:28\",\n            \"approval\": {\n                \"id\": 392094,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 258953,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 07:33:18\",\n                \"created_at\": \"2024-06-21 09:37:28\",\n                \"updated_at\": \"2024-07-24 07:33:18\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262541,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-17\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-11 10:06:32\",\n            \"updated_at\": \"2024-07-11 10:06:32\",\n            \"approval\": {\n                \"id\": 407080,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262541,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-25 00:00:05\",\n                \"created_at\": \"2024-07-11 10:06:32\",\n                \"updated_at\": \"2024-07-25 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262246,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2024-07-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:51:35\",\n            \"updated_at\": \"2024-07-09 11:51:35\",\n            \"approval\": {\n                \"id\": 405826,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262246,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:51:40\",\n                \"created_at\": \"2024-07-09 11:51:35\",\n                \"updated_at\": \"2024-07-09 11:51:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 265119,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Huwelijk\",\n            \"start_date\": \"2024-07-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-29 13:56:24\",\n            \"updated_at\": \"2024-07-29 13:56:24\",\n            \"approval\": {\n                \"id\": 417658,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 265119,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 00:00:05\",\n                \"created_at\": \"2024-07-29 13:56:24\",\n                \"updated_at\": \"2024-08-12 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 264647,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-26 07:35:14\",\n            \"updated_at\": \"2024-08-05 10:59:13\",\n            \"approval\": {\n                \"id\": 416162,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 264647,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 10:59:16\",\n                \"created_at\": \"2024-07-26 07:35:14\",\n                \"updated_at\": \"2024-08-05 10:59:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 266319,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-05 10:59:54\",\n            \"updated_at\": \"2024-08-05 10:59:54\",\n            \"approval\": {\n                \"id\": 423012,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 266319,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 11:01:01\",\n                \"created_at\": \"2024-08-05 10:59:54\",\n                \"updated_at\": \"2024-08-05 11:01:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267428,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:32:21\",\n            \"updated_at\": \"2024-08-12 10:32:21\",\n            \"approval\": {\n                \"id\": 426493,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 267428,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-14 09:53:53\",\n                \"created_at\": \"2024-08-12 10:32:21\",\n                \"updated_at\": \"2024-08-14 09:53:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267427,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:31:56\",\n            \"updated_at\": \"2024-08-12 10:31:56\",\n            \"approval\": {\n                \"id\": 426492,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 267427,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 10:32:05\",\n                \"created_at\": \"2024-08-12 10:31:56\",\n                \"updated_at\": \"2024-08-12 10:32:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268249,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-19 11:17:46\",\n            \"updated_at\": \"2024-08-19 11:17:46\",\n            \"approval\": {\n                \"id\": 429949,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 268249,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-02 00:00:07\",\n                \"created_at\": \"2024-08-19 11:17:46\",\n                \"updated_at\": \"2024-09-02 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 263904,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-19 07:35:04\",\n            \"updated_at\": \"2024-07-19 07:35:04\",\n            \"approval\": {\n                \"id\": 412359,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 263904,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 08:16:32\",\n                \"created_at\": \"2024-07-19 07:35:04\",\n                \"updated_at\": \"2024-07-24 08:16:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 269483,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-28\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-28\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-27 11:50:24\",\n            \"updated_at\": \"2024-08-27 11:50:24\",\n            \"approval\": {\n                \"id\": 435303,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 269483,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-10 00:00:09\",\n                \"created_at\": \"2024-08-27 11:50:24\",\n                \"updated_at\": \"2024-09-10 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"52.00\",\n            \"reason\": \"Weekje Spanje\",\n            \"start_date\": \"2024-08-31\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-08-22 13:11:35\",\n            \"updated_at\": \"2024-09-01 16:15:05\",\n            \"approval\": {\n                \"id\": 432189,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 268855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-01 16:15:10\",\n                \"created_at\": \"2024-08-22 13:11:35\",\n                \"updated_at\": \"2024-09-01 16:15:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270622,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"4.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-04 09:56:20\",\n            \"updated_at\": \"2024-09-04 09:56:20\",\n            \"approval\": {\n                \"id\": 444256,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270622,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:29\",\n                \"created_at\": \"2024-09-04 09:56:20\",\n                \"updated_at\": \"2024-09-11 13:10:29\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270768,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-05 08:30:19\",\n            \"updated_at\": \"2024-09-05 08:30:19\",\n            \"approval\": {\n                \"id\": 445287,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270768,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:59\",\n                \"created_at\": \"2024-09-05 08:30:19\",\n                \"updated_at\": \"2024-09-11 13:10:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 271887,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-12 12:26:40\",\n            \"updated_at\": \"2024-09-12 12:26:40\",\n            \"approval\": {\n                \"id\": 452856,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 271887,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-12 12:27:20\",\n                \"created_at\": \"2024-09-12 12:26:40\",\n                \"updated_at\": \"2024-09-12 12:27:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272021,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"0.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-18\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-13 09:16:07\",\n            \"updated_at\": \"2024-09-13 09:16:07\",\n            \"approval\": {\n                \"id\": 453813,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 272021,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-13 11:49:42\",\n                \"created_at\": \"2024-09-13 09:16:07\",\n                \"updated_at\": \"2024-09-13 11:49:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272935,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-19 07:50:50\",\n            \"updated_at\": \"2024-09-19 07:50:50\",\n            \"approval\": {\n                \"id\": 459293,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 272935,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-19 07:50:54\",\n                \"created_at\": \"2024-09-19 07:50:50\",\n                \"updated_at\": \"2024-09-19 07:50:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273831,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"13.02\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-25\",\n            \"start_time\": \"09:14\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"10:15\",\n            \"created_at\": \"2024-09-25 08:19:43\",\n            \"updated_at\": \"2024-09-25 08:19:43\",\n            \"approval\": {\n                \"id\": 464718,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 273831,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-25 08:19:43\",\n                \"created_at\": \"2024-09-25 08:19:43\",\n                \"updated_at\": \"2024-09-25 08:19:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 274057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"28.00\",\n            \"reason\": \"weekend weg\",\n            \"start_date\": \"2024-09-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-03\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-26 09:43:50\",\n            \"updated_at\": \"2024-09-26 09:43:50\",\n            \"approval\": {\n                \"id\": 466280,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 274057,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-26 12:04:33\",\n                \"created_at\": \"2024-09-26 09:43:50\",\n                \"updated_at\": \"2024-09-26 12:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273719,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-27\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-24 12:14:25\",\n            \"updated_at\": \"2024-09-24 12:14:25\",\n            \"approval\": {\n                \"id\": 463911,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 273719,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-24 12:14:25\",\n                \"created_at\": \"2024-09-24 12:14:25\",\n                \"updated_at\": \"2024-09-24 12:14:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 275695,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"lang weekend weg\",\n            \"start_date\": \"2024-10-10\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-15\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-07 09:22:20\",\n            \"updated_at\": \"2024-10-08 07:41:39\",\n            \"approval\": {\n                \"id\": 478491,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 275695,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:41:44\",\n                \"created_at\": \"2024-10-07 09:22:20\",\n                \"updated_at\": \"2024-10-08 07:41:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 275876,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191304,\n            \"hours\": \"384.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-14\",\n            \"start_time\": null,\n            \"end_date\": \"2025-02-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-10-08 07:43:46\",\n            \"updated_at\": \"2024-10-08 07:43:46\",\n            \"approval\": {\n                \"id\": 479809,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 275876,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:44:16\",\n                \"created_at\": \"2024-10-08 07:43:46\",\n                \"updated_at\": \"2024-10-08 07:44:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 274862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"19.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-23\",\n            \"start_time\": \"14:00\",\n            \"end_date\": \"2024-10-27\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-01 12:48:35\",\n            \"updated_at\": \"2024-10-21 08:21:27\",\n            \"approval\": {\n                \"id\": 472584,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 274862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-21 08:21:38\",\n                \"created_at\": \"2024-10-01 12:48:35\",\n                \"updated_at\": \"2024-10-21 08:21:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"e5ff555c-7981-4fbd-8a6a-c9799f9d7bc8"},{"name":"Create leave type","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"8835d445-a514-48a6-a826-2562e120b050"}}],"id":"c8f69ec1-1a05-4112-b84b-7719a8e10d22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n    \"company_id\": null,\n    \"name\": \"Wettelijke vakantiedagen (statutory holiday)\",\n    \"group_name\": \"Vakantie\",\n    \"type\": \"holiday\",\n    \"position\": 1,\n    \"carryover_months\": 0,\n    \"auto_approval_days\": 14,\n    \"employment_types\": [\n        \"employee\"\n    ],\n    \"work_schedule_types\": [\n        \"full-time\",\n        \"part-time\"\n    ],\n    \"is_prorated\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-types","description":"<p>Create a leave type</p>\n","urlObject":{"path":["leave-types"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"564b614e-7ea3-4310-8108-f6c685d2999c","name":"Leave types Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n    \"company_id\": null,\n    \"name\": \"Wettelijke vakantiedagen (statutory holiday)\",\n    \"group_name\": \"Vakantie\",\n    \"type\": \"holiday\",\n    \"position\": 1,\n    \"carryover_months\": 0,\n    \"auto_approval_days\": 14,\n    \"employment_types\": [\n        \"employee\"\n    ],\n    \"work_schedule_types\": [\n        \"full-time\",\n        \"part-time\"\n    ],\n    \"is_prorated\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 13:28:22 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 210573,\n        \"organization_id\": 14799,\n        \"company_id\": null,\n        \"name\": \"Wettelijke vakantiedagen (statutory holiday)\",\n        \"group_name\": \"Vakantie\",\n        \"type\": \"holiday\",\n        \"position\": 1,\n        \"carryover_months\": 0,\n        \"auto_approval_days\": 14,\n        \"employment_types\": [\n            \"employee\"\n        ],\n        \"work_schedule_types\": [\n            \"full-time\",\n            \"part-time\"\n        ],\n        \"is_prorated\": true,\n        \"created_at\": \"2024-12-03 13:28:21\",\n        \"updated_at\": \"2024-12-03 13:28:21\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ],\n        \"is_yearly\": true\n    }\n}"}],"_postman_id":"c8f69ec1-1a05-4112-b84b-7719a8e10d22"},{"name":"Update leave type","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"7880c4d1-1dc2-498f-b35f-1c20bcc2d56f"}}],"id":"c0abeb8a-71ee-4a93-ada1-df429cb9c155","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":" {\n    \"company_id\": null,\n    \"name\": \"Wettelijke vakantiedagen (statutory holiday)\",\n    \"group_name\": \"Vakantie\",\n    \"type\": \"holiday\",\n    \"position\": 1,\n    \"carryover_months\": 0,\n    \"auto_approval_days\": 14,\n    \"employment_types\": [\n        \"employee\"\n    ],\n    \"work_schedule_types\": [\n        \"full-time\",\n        \"part-time\"\n    ],\n    \"is_prorated\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-types/210573","description":"<p>Updates a leave type</p>\n","urlObject":{"path":["leave-types","210573"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"1a5dab61-1cf5-4f07-ab6d-b45c03132575","name":"Leave type Copy","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":" {\n    \"name\": \"Wettelijke vakantiedagen (holiday)\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-types/210573"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 13:30:15 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 210573,\n        \"organization_id\": 14799,\n        \"company_id\": null,\n        \"name\": \"Wettelijke vakantiedagen (holiday)\",\n        \"group_name\": \"Vakantie\",\n        \"type\": \"holiday\",\n        \"position\": 1,\n        \"carryover_months\": 0,\n        \"auto_approval_days\": 14,\n        \"employment_types\": [\n            \"employee\"\n        ],\n        \"work_schedule_types\": [\n            \"full-time\",\n            \"part-time\"\n        ],\n        \"is_prorated\": true,\n        \"created_at\": \"2024-12-03 13:28:21\",\n        \"updated_at\": \"2024-12-03 13:30:15\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ],\n        \"is_yearly\": true\n    }\n}"}],"_postman_id":"c0abeb8a-71ee-4a93-ada1-df429cb9c155"},{"name":"Delete leave type","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"f887450f-8a6e-4028-8697-c92902d29323"}}],"id":"b17c080b-c982-4a06-a2b6-4d9e684d1f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-types/210573","description":"<p>Deletes a leave type</p>\n","urlObject":{"path":["leave-types","210573"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"ec78b89b-a1ac-4ba4-97d0-52fd256e1b2b","name":"Leave type Copy","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-types/210573"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 13:30:34 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"b17c080b-c982-4a06-a2b6-4d9e684d1f79"}],"id":"b05aa851-67d8-4667-8c1e-cbe7b6423d12","description":"<h3 id=\"sortables\">Sortables</h3>\n<p>Use these fields in the sort query param:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>Sort by the name</td>\n</tr>\n<tr>\n<td><code>position</code></td>\n<td>Sort by the position</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"model\">Model</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>company_id</td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>Must exist in the <code>Company</code> table.</td>\n</tr>\n<tr>\n<td>name</td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Name of the type</td>\n</tr>\n<tr>\n<td>type</td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Must match values from <code>leave_types</code>.</td>\n</tr>\n<tr>\n<td>position</td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>Must be between 0 and 255.</td>\n</tr>\n<tr>\n<td>carryover_months</td>\n<td><code>integer</code></td>\n<td>Yes</td>\n<td>Must be between 0 and 120.</td>\n</tr>\n<tr>\n<td>auto_approval_days</td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>Must be between 0 and 365.</td>\n</tr>\n<tr>\n<td>employment_types</td>\n<td><code>array</code></td>\n<td>Yes</td>\n<td>List of employment types. e.g [\"employees\"]</td>\n</tr>\n<tr>\n<td>work_schedule_types</td>\n<td><code>array</code></td>\n<td>Yes</td>\n<td>List of workschedule types. e.g [  <br />\"full-time\",  <br />\"part-time\"  <br />]</td>\n</tr>\n<tr>\n<td>is_prorated</td>\n<td><code>boolean</code></td>\n<td>Yes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The <code>type</code> field represents the category of leave, allowing classification into predefined types for organizational and reporting purposes. Below is a table describing each leave type.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Holiday</code></td>\n<td>Paid leave for public holidays.</td>\n<td>Typically aligned with national holidays.</td>\n</tr>\n<tr>\n<td><code>Time for time</code></td>\n<td>Leave granted for overtime.</td>\n<td>Compensatory leave for extra hours worked.</td>\n</tr>\n<tr>\n<td><code>Statutory leave</code></td>\n<td>Legally mandated leave.</td>\n<td>Based on local labor laws.</td>\n</tr>\n<tr>\n<td><code>Special leave</code></td>\n<td>Leave for specific reasons.</td>\n<td>Examples: bereavement, jury duty.</td>\n</tr>\n<tr>\n<td><code>Unpaid leave</code></td>\n<td>Leave without pay.</td>\n<td>Does not affect salary.</td>\n</tr>\n<tr>\n<td><code>Other</code></td>\n<td>Miscellaneous leave types.</td>\n<td>For any leave not covered above.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b05aa851-67d8-4667-8c1e-cbe7b6423d12"},{"name":"Leave request","item":[{"name":"Leave requests","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"3ba21b7e-4bfb-4fda-a271-d034e7b9d19e"}}],"id":"e735c1c4-a3f0-4c44-82f6-99667cad979d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/leave-requests?sort=start_date","description":"<p>Retrieves all leave requests.</p>\n","urlObject":{"path":["leave-requests"],"host":["https://api.buddee.nl"],"query":[{"key":"sort","value":"start_date"},{"disabled":true,"description":{"content":"<p>Employee id</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Leave type id</p>\n","type":"text/plain"},"key":"leave_type_id","value":"{{leave_type_id}}"}],"variable":[]}},"response":[{"id":"c7a31446-ede4-476b-bb6b-77a553e14d0e","name":"leave request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/leave-requests?sort=start_date&employee_id=&leave_type_id=&active_in_period= &approval_status=","host":["https://api.buddee.nl"],"path":["leave-requests"],"query":[{"key":"sort","value":"start_date","type":"text"},{"key":"employee_id","value":"","description":"Filters by leave_requests.employee_id","type":"text"},{"key":"leave_type_id","value":"","description":"Filters by leave_requests.leave_type_id","type":"text"},{"key":"active_in_period","value":" ","type":"text"},{"key":"approval_status","value":"","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:42:24 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 144,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 196423,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-19\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-05 15:00:31\",\n            \"updated_at\": \"2021-06-17 12:29:01\",\n            \"approval\": {\n                \"id\": 119684,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196423,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week !\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-06-17 12:29:01\",\n                \"created_at\": \"2021-05-05 15:00:31\",\n                \"updated_at\": \"2021-06-17 12:29:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196393,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-29\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-30\",\n            \"end_time\": null,\n            \"created_at\": \"2021-04-29 08:54:47\",\n            \"updated_at\": \"2021-11-08 07:54:35\",\n            \"approval\": {\n                \"id\": 119654,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196393,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:35\",\n                \"created_at\": \"2021-04-29 08:54:47\",\n                \"updated_at\": \"2021-11-08 07:54:35\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-05-06\",\n            \"start_time\": null,\n            \"end_date\": \"2021-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-06 13:18:16\",\n            \"updated_at\": \"2021-11-08 07:54:26\",\n            \"approval\": {\n                \"id\": 119694,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, teveel mensen met vakantie\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:26\",\n                \"created_at\": \"2021-05-06 13:18:16\",\n                \"updated_at\": \"2021-11-08 07:54:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197276,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"15.50\",\n            \"reason\": null,\n            \"start_date\": \"2021-09-29\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2021-09-30\",\n            \"end_time\": \"16:30\",\n            \"created_at\": \"2021-09-29 10:45:14\",\n            \"updated_at\": \"2021-11-08 07:54:52\",\n            \"approval\": {\n                \"id\": 120506,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 197276,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:52\",\n                \"created_at\": \"2021-09-29 10:45:14\",\n                \"updated_at\": \"2021-11-08 07:54:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 198358,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg\",\n            \"start_date\": \"2022-02-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-02-12\",\n            \"end_time\": null,\n            \"created_at\": \"2022-02-10 10:38:19\",\n            \"updated_at\": \"2022-02-10 10:38:19\",\n            \"approval\": {\n                \"id\": 131288,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198358,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-02-10 10:38:40\",\n                \"created_at\": \"2022-02-10 10:38:19\",\n                \"updated_at\": \"2022-02-10 10:38:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198609,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Midweekje vakantie\",\n            \"start_date\": \"2022-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-01 11:24:16\",\n            \"updated_at\": \"2022-03-01 11:24:16\",\n            \"approval\": {\n                \"id\": 132354,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198609,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-01 11:24:33\",\n                \"created_at\": \"2022-03-01 11:24:16\",\n                \"updated_at\": \"2022-03-01 11:24:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-03-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-09 11:01:21\",\n            \"updated_at\": \"2022-03-09 11:01:21\",\n            \"approval\": {\n                \"id\": 132675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198705,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-23 00:00:05\",\n                \"created_at\": \"2022-03-09 11:01:21\",\n                \"updated_at\": \"2022-03-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 199761,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"6.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-05-20\",\n            \"start_time\": \"11:00\",\n            \"end_date\": \"2022-05-21\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2022-05-20 10:20:39\",\n            \"updated_at\": \"2022-05-20 10:20:39\",\n            \"approval\": {\n                \"id\": 137599,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 199761,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-05-20 10:20:43\",\n                \"created_at\": \"2022-05-20 10:20:39\",\n                \"updated_at\": \"2022-05-20 10:20:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200004,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-06-08\",\n            \"start_time\": null,\n            \"end_date\": \"2022-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-06-08 09:17:58\",\n            \"updated_at\": \"2022-06-08 09:17:58\",\n            \"approval\": {\n                \"id\": 139024,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200004,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-06-22 00:00:04\",\n                \"created_at\": \"2022-06-08 09:17:58\",\n                \"updated_at\": \"2022-06-22 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200468,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-06\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-05 11:13:08\",\n            \"updated_at\": \"2022-07-05 11:13:08\",\n            \"approval\": {\n                \"id\": 141383,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200468,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-19 00:00:04\",\n                \"created_at\": \"2022-07-05 11:13:08\",\n                \"updated_at\": \"2022-07-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200830,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-20 20:59:20\",\n            \"updated_at\": \"2022-07-20 20:59:20\",\n            \"approval\": {\n                \"id\": 142560,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200830,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-20 20:59:24\",\n                \"created_at\": \"2022-07-20 20:59:20\",\n                \"updated_at\": \"2022-07-20 20:59:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201545,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-01\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:23:19\",\n            \"updated_at\": \"2022-08-30 11:23:19\",\n            \"approval\": {\n                \"id\": 145567,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201545,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:23:19\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-08-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-10 12:48:54\",\n            \"updated_at\": \"2022-08-10 12:48:54\",\n            \"approval\": {\n                \"id\": 144205,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-08-16 08:39:24\",\n                \"created_at\": \"2022-08-10 12:48:54\",\n                \"updated_at\": \"2022-08-16 08:39:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201540,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 08:06:47\",\n            \"updated_at\": \"2022-08-30 08:06:47\",\n            \"approval\": {\n                \"id\": 145544,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201540,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:16:39\",\n                \"created_at\": \"2022-08-30 08:06:47\",\n                \"updated_at\": \"2022-09-02 08:16:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201543,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:17:13\",\n            \"updated_at\": \"2022-08-30 11:17:13\",\n            \"approval\": {\n                \"id\": 145565,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201543,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:04\",\n                \"created_at\": \"2022-08-30 11:17:13\",\n                \"updated_at\": \"2022-09-13 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201544,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:21:04\",\n            \"updated_at\": \"2022-08-30 11:21:04\",\n            \"approval\": {\n                \"id\": 145566,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201544,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:21:04\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201573,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-02\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-02\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-31 08:06:15\",\n            \"updated_at\": \"2022-08-31 08:06:15\",\n            \"approval\": {\n                \"id\": 145712,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201573,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-14 00:00:04\",\n                \"created_at\": \"2022-08-31 08:06:15\",\n                \"updated_at\": \"2022-09-14 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-02 08:17:33\",\n            \"updated_at\": \"2022-09-02 08:17:33\",\n            \"approval\": {\n                \"id\": 146110,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:17:42\",\n                \"created_at\": \"2022-09-02 08:17:33\",\n                \"updated_at\": \"2022-09-02 08:17:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201738,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-07\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-06 11:14:48\",\n            \"updated_at\": \"2022-09-06 11:14:48\",\n            \"approval\": {\n                \"id\": 146619,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201738,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-20 00:00:05\",\n                \"created_at\": \"2022-09-06 11:14:48\",\n                \"updated_at\": \"2022-09-20 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201677,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-09-09\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2022-09-12\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2022-09-05 08:44:06\",\n            \"updated_at\": \"2022-09-05 08:44:06\",\n            \"approval\": {\n                \"id\": 146480,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201677,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-19 00:00:04\",\n                \"created_at\": \"2022-09-05 08:44:06\",\n                \"updated_at\": \"2022-09-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201790,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-12\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-16\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-08 09:52:59\",\n            \"updated_at\": \"2022-09-08 09:52:59\",\n            \"approval\": {\n                \"id\": 146839,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201790,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-17 11:01:23\",\n                \"created_at\": \"2022-09-08 09:52:59\",\n                \"updated_at\": \"2022-10-17 11:01:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202156,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-29 07:46:38\",\n            \"updated_at\": \"2022-09-29 07:46:38\",\n            \"approval\": {\n                \"id\": 149079,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202156,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-13 00:00:03\",\n                \"created_at\": \"2022-09-29 07:46:38\",\n                \"updated_at\": \"2022-10-13 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202655,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-19 08:56:47\",\n            \"updated_at\": \"2022-10-19 08:56:47\",\n            \"approval\": {\n                \"id\": 151650,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202655,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:02:58\",\n                \"created_at\": \"2022-10-19 08:56:47\",\n                \"updated_at\": \"2022-10-26 09:02:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202635,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-18 13:43:51\",\n            \"updated_at\": \"2022-10-18 13:43:51\",\n            \"approval\": {\n                \"id\": 151578,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202635,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:40\",\n                \"created_at\": \"2022-10-18 13:43:51\",\n                \"updated_at\": \"2022-10-26 09:03:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-20 11:14:13\",\n            \"updated_at\": \"2022-10-20 11:14:13\",\n            \"approval\": {\n                \"id\": 151829,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:04\",\n                \"created_at\": \"2022-10-20 11:14:13\",\n                \"updated_at\": \"2022-10-26 09:03:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202863,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-27\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 08:29:42\",\n            \"updated_at\": \"2022-10-26 08:29:42\",\n            \"approval\": {\n                \"id\": 152437,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202863,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:12\",\n                \"created_at\": \"2022-10-26 08:29:42\",\n                \"updated_at\": \"2022-10-26 09:03:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202896,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-04\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-27 09:45:36\",\n            \"updated_at\": \"2022-10-27 09:45:36\",\n            \"approval\": {\n                \"id\": 152561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202896,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-10 00:00:04\",\n                \"created_at\": \"2022-10-27 09:45:36\",\n                \"updated_at\": \"2022-11-10 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203875,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"176.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 13:43:41\",\n            \"updated_at\": \"2022-11-24 13:43:41\",\n            \"approval\": {\n                \"id\": 156663,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203875,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Mag niet\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 13:44:02\",\n                \"created_at\": \"2022-11-24 13:43:41\",\n                \"updated_at\": \"2022-11-24 13:44:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-09 09:09:37\",\n            \"updated_at\": \"2022-11-09 09:09:37\",\n            \"approval\": {\n                \"id\": 154517,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 14:37:58\",\n                \"created_at\": \"2022-11-09 09:09:37\",\n                \"updated_at\": \"2022-11-09 14:37:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203869,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-21\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 12:40:05\",\n            \"updated_at\": \"2022-11-24 12:40:05\",\n            \"approval\": {\n                \"id\": 156651,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203869,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 12:40:38\",\n                \"created_at\": \"2022-11-24 12:40:05\",\n                \"updated_at\": \"2022-11-24 12:40:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203982,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-28\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:50:08\",\n            \"updated_at\": \"2022-11-28 13:50:08\",\n            \"approval\": {\n                \"id\": 157133,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203982,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-01 10:37:47\",\n                \"created_at\": \"2022-11-28 13:50:08\",\n                \"updated_at\": \"2022-12-01 10:37:47\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203637,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"208.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-17 13:38:31\",\n            \"updated_at\": \"2022-11-17 13:38:31\",\n            \"approval\": {\n                \"id\": 155624,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203637,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-17 13:39:02\",\n                \"created_at\": \"2022-11-17 13:38:31\",\n                \"updated_at\": \"2022-11-17 13:39:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203915,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-25 13:29:01\",\n            \"updated_at\": \"2022-11-25 13:29:01\",\n            \"approval\": {\n                \"id\": 156812,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203915,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"test\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-25 13:29:41\",\n                \"created_at\": \"2022-11-25 13:29:01\",\n                \"updated_at\": \"2022-11-25 13:29:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 09:25:09\",\n            \"updated_at\": \"2022-12-20 09:25:09\",\n            \"approval\": {\n                \"id\": 160424,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:04\",\n                \"created_at\": \"2022-12-20 09:25:09\",\n                \"updated_at\": \"2023-01-03 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204741,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Dagje vrij\",\n            \"start_date\": \"2022-12-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:07:53\",\n            \"updated_at\": \"2022-12-20 13:07:53\",\n            \"approval\": {\n                \"id\": 160494,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204741,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:07:53\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203981,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:36:08\",\n            \"updated_at\": \"2022-11-28 13:36:08\",\n            \"approval\": {\n                \"id\": 157128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203981,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-28 13:36:58\",\n                \"created_at\": \"2022-11-28 13:36:08\",\n                \"updated_at\": \"2022-11-28 13:36:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204488,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-12 13:46:47\",\n            \"updated_at\": \"2022-12-12 13:46:47\",\n            \"approval\": {\n                \"id\": 159370,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204488,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-26 00:00:04\",\n                \"created_at\": \"2022-12-12 13:46:47\",\n                \"updated_at\": \"2022-12-26 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204742,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"vakantie\",\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:17:40\",\n            \"updated_at\": \"2022-12-20 13:17:40\",\n            \"approval\": {\n                \"id\": 160495,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204742,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-20 13:18:31\",\n                \"created_at\": \"2022-12-20 13:17:40\",\n                \"updated_at\": \"2022-12-20 13:18:31\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204823,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-22 10:11:11\",\n            \"updated_at\": \"2022-12-22 10:11:11\",\n            \"approval\": {\n                \"id\": 160843,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204823,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-22 10:11:56\",\n                \"created_at\": \"2022-12-22 10:11:11\",\n                \"updated_at\": \"2022-12-22 10:11:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204968,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-29 08:35:46\",\n            \"updated_at\": \"2022-12-29 08:35:46\",\n            \"approval\": {\n                \"id\": 161549,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204968,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, want dan zijn er al 2 collega's weg\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-10 14:45:07\",\n                \"created_at\": \"2022-12-29 08:35:46\",\n                \"updated_at\": \"2023-01-10 14:45:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204802,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-07\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-21 13:09:28\",\n            \"updated_at\": \"2022-12-21 13:09:28\",\n            \"approval\": {\n                \"id\": 160675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204802,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-21 13:09:38\",\n                \"created_at\": \"2022-12-21 13:09:28\",\n                \"updated_at\": \"2022-12-21 13:09:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204743,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:20:23\",\n            \"updated_at\": \"2022-12-20 13:20:23\",\n            \"approval\": {\n                \"id\": 160496,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204743,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:20:23\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 205663,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-13 14:04:01\",\n            \"updated_at\": \"2023-01-13 14:04:01\",\n            \"approval\": {\n                \"id\": 163964,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205663,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-13 14:04:25\",\n                \"created_at\": \"2023-01-13 14:04:01\",\n                \"updated_at\": \"2023-01-13 14:04:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205506,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-27\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-11 11:11:05\",\n            \"updated_at\": \"2023-01-11 11:11:05\",\n            \"approval\": {\n                \"id\": 163528,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205506,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-11 11:11:49\",\n                \"created_at\": \"2023-01-11 11:11:05\",\n                \"updated_at\": \"2023-01-11 11:11:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-19 12:14:43\",\n            \"updated_at\": \"2023-01-19 12:14:43\",\n            \"approval\": {\n                \"id\": 164756,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-19 12:15:19\",\n                \"created_at\": \"2023-01-19 12:14:43\",\n                \"updated_at\": \"2023-01-19 12:15:19\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 206245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"104.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-30 12:44:46\",\n            \"updated_at\": \"2023-01-30 12:44:46\",\n            \"approval\": {\n                \"id\": 166418,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-30 12:45:12\",\n                \"created_at\": \"2023-01-30 12:44:46\",\n                \"updated_at\": \"2023-01-30 12:45:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202867,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:04:02\",\n            \"updated_at\": \"2022-10-26 09:04:02\",\n            \"approval\": {\n                \"id\": 152456,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202867,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:04:04\",\n                \"created_at\": \"2022-10-26 09:04:02\",\n                \"updated_at\": \"2022-10-26 09:04:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 206942,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-20\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-02-13 13:09:59\",\n            \"updated_at\": \"2023-02-13 13:09:59\",\n            \"approval\": {\n                \"id\": 169385,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206942,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-02-27 00:00:04\",\n                \"created_at\": \"2023-02-13 13:09:59\",\n                \"updated_at\": \"2023-02-27 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204539,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-13 12:39:47\",\n            \"updated_at\": \"2022-12-13 12:39:47\",\n            \"approval\": {\n                \"id\": 159552,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204539,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-13 12:40:32\",\n                \"created_at\": \"2022-12-13 12:39:47\",\n                \"updated_at\": \"2022-12-13 12:40:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 208038,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-06\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-09 10:11:34\",\n            \"updated_at\": \"2023-03-09 10:11:34\",\n            \"approval\": {\n                \"id\": 174513,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208038,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-09 10:12:41\",\n                \"created_at\": \"2023-03-09 10:11:34\",\n                \"updated_at\": \"2023-03-09 10:12:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 208946,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-04-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-31 12:09:32\",\n            \"updated_at\": \"2023-03-31 12:09:32\",\n            \"approval\": {\n                \"id\": 179569,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208946,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-31 12:09:54\",\n                \"created_at\": \"2023-03-31 12:09:32\",\n                \"updated_at\": \"2023-03-31 12:09:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202868,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-05-07\",\n            \"start_time\": null,\n            \"end_date\": \"2023-05-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:09:48\",\n            \"updated_at\": \"2022-10-26 09:09:48\",\n            \"approval\": {\n                \"id\": 152457,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202868,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 00:00:03\",\n                \"created_at\": \"2022-10-26 09:09:48\",\n                \"updated_at\": \"2022-11-09 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 212983,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-05\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-02 11:44:10\",\n            \"updated_at\": \"2023-06-02 11:44:10\",\n            \"approval\": {\n                \"id\": 198178,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 212983,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-16 00:00:04\",\n                \"created_at\": \"2023-06-02 11:44:10\",\n                \"updated_at\": \"2023-06-16 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 214487,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-19 10:50:57\",\n            \"updated_at\": \"2023-06-19 10:50:57\",\n            \"approval\": {\n                \"id\": 203643,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 214487,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-27 10:21:54\",\n                \"created_at\": \"2023-06-19 10:50:57\",\n                \"updated_at\": \"2023-06-27 10:21:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216044,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-10 07:31:44\",\n            \"updated_at\": \"2023-07-10 07:31:44\",\n            \"approval\": {\n                \"id\": 212048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216044,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-24 00:00:04\",\n                \"created_at\": \"2023-07-10 07:31:44\",\n                \"updated_at\": \"2023-07-24 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216941,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-21\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-21 12:31:36\",\n            \"updated_at\": \"2023-07-21 12:31:36\",\n            \"approval\": {\n                \"id\": 215869,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216941,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-08-04 00:00:04\",\n                \"created_at\": \"2023-07-21 12:31:36\",\n                \"updated_at\": \"2023-08-04 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216305,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-24\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-12 14:11:34\",\n            \"updated_at\": \"2023-07-12 14:11:34\",\n            \"approval\": {\n                \"id\": 213215,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216305,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-12 14:11:38\",\n                \"created_at\": \"2023-07-12 14:11:34\",\n                \"updated_at\": \"2023-07-12 14:11:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 219061,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 193188,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-08-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-08-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-08-25 08:41:46\",\n            \"updated_at\": \"2023-08-25 08:41:46\",\n            \"approval\": {\n                \"id\": 226086,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 219061,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-01 11:11:59\",\n                \"created_at\": \"2023-08-25 08:41:46\",\n                \"updated_at\": \"2023-11-01 11:11:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233018,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2023-09-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-17\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-08 08:24:56\",\n            \"updated_at\": \"2024-01-19 14:28:17\",\n            \"approval\": {\n                \"id\": 280187,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 233018,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-19 14:28:22\",\n                \"created_at\": \"2024-01-08 08:24:56\",\n                \"updated_at\": \"2024-01-19 14:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-15\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-15\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-15 12:58:37\",\n            \"updated_at\": \"2023-09-15 12:58:37\",\n            \"approval\": {\n                \"id\": 234343,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-29 00:00:05\",\n                \"created_at\": \"2023-09-15 12:58:37\",\n                \"updated_at\": \"2023-09-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-18 10:12:41\",\n            \"updated_at\": \"2023-09-18 10:12:41\",\n            \"approval\": {\n                \"id\": 234797,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-18 10:13:10\",\n                \"created_at\": \"2023-09-18 10:12:41\",\n                \"updated_at\": \"2023-09-18 10:13:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 221739,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-22\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-22 09:10:24\",\n            \"updated_at\": \"2023-09-22 09:10:24\",\n            \"approval\": {\n                \"id\": 236692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221739,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-06 00:00:05\",\n                \"created_at\": \"2023-09-22 09:10:24\",\n                \"updated_at\": \"2023-10-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221853,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-25 09:48:04\",\n            \"updated_at\": \"2023-09-25 09:48:04\",\n            \"approval\": {\n                \"id\": 237220,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221853,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-09 00:00:06\",\n                \"created_at\": \"2023-09-25 09:48:04\",\n                \"updated_at\": \"2023-10-09 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 222389,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-29\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-29 11:21:19\",\n            \"updated_at\": \"2023-09-29 11:21:19\",\n            \"approval\": {\n                \"id\": 239239,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 222389,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-13 00:00:05\",\n                \"created_at\": \"2023-09-29 11:21:19\",\n                \"updated_at\": \"2023-10-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 224376,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-10-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-16 09:38:16\",\n            \"updated_at\": \"2023-10-16 09:38:16\",\n            \"approval\": {\n                \"id\": 246156,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 224376,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-30 00:00:05\",\n                \"created_at\": \"2023-10-16 09:38:16\",\n                \"updated_at\": \"2023-10-30 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 225855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-31 10:00:46\",\n            \"updated_at\": \"2023-10-31 10:00:46\",\n            \"approval\": {\n                \"id\": 251894,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 225855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-31 10:00:49\",\n                \"created_at\": \"2023-10-31 10:00:46\",\n                \"updated_at\": \"2023-10-31 10:00:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226557,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg met gezin\",\n            \"start_date\": \"2023-11-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-13\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:40:00\",\n            \"updated_at\": \"2023-11-07 08:49:31\",\n            \"approval\": {\n                \"id\": 255010,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 226557,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-07 09:00:22\",\n                \"created_at\": \"2023-11-07 08:40:00\",\n                \"updated_at\": \"2023-11-07 09:00:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-14 11:35:15\",\n            \"updated_at\": \"2023-11-14 11:35:15\",\n            \"approval\": {\n                \"id\": 257858,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 227435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-14 11:35:20\",\n                \"created_at\": \"2023-11-14 11:35:15\",\n                \"updated_at\": \"2023-11-14 11:35:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227658,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-16 10:16:43\",\n            \"updated_at\": \"2023-11-16 10:16:43\",\n            \"approval\": {\n                \"id\": 258821,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 227658,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-30 00:00:04\",\n                \"created_at\": \"2023-11-16 10:16:43\",\n                \"updated_at\": \"2023-11-30 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 228261,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-22 09:42:12\",\n            \"updated_at\": \"2023-11-22 09:42:12\",\n            \"approval\": {\n                \"id\": 260903,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 228261,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-06 00:00:05\",\n                \"created_at\": \"2023-11-22 09:42:12\",\n                \"updated_at\": \"2023-12-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227550,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"29.42\",\n            \"reason\": \"Ski vakantie\",\n            \"start_date\": \"2023-11-30\",\n            \"start_time\": \"12:35\",\n            \"end_date\": \"2023-12-07\",\n            \"end_time\": \"10:00\",\n            \"created_at\": \"2023-11-15 10:37:10\",\n            \"updated_at\": \"2023-11-15 10:37:10\",\n            \"approval\": {\n                \"id\": 258393,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 227550,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Graag andere week ivm vakantie rest van het team\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-15 10:38:52\",\n                \"created_at\": \"2023-11-15 10:37:10\",\n                \"updated_at\": \"2023-11-15 10:38:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 229436,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-08\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2023-12-12\",\n            \"end_time\": \"14:00\",\n            \"created_at\": \"2023-12-04 09:52:03\",\n            \"updated_at\": \"2023-12-04 11:45:07\",\n            \"approval\": {\n                \"id\": 266069,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 229436,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-18 00:00:07\",\n                \"created_at\": \"2023-12-04 09:52:03\",\n                \"updated_at\": \"2023-12-18 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231027,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-18\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:01:49\",\n            \"updated_at\": \"2023-12-18 10:01:49\",\n            \"approval\": {\n                \"id\": 272214,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 231027,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:08\",\n                \"created_at\": \"2023-12-18 10:01:49\",\n                \"updated_at\": \"2024-01-01 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226555,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Skivakantie\",\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-01\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:38:16\",\n            \"updated_at\": \"2023-11-07 08:38:16\",\n            \"approval\": {\n                \"id\": 255008,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 226555,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-21 00:00:05\",\n                \"created_at\": \"2023-11-07 08:38:16\",\n                \"updated_at\": \"2023-11-21 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231028,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-05\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:02:17\",\n            \"updated_at\": \"2023-12-18 10:02:17\",\n            \"approval\": {\n                \"id\": 272215,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 231028,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:09\",\n                \"created_at\": \"2023-12-18 10:02:17\",\n                \"updated_at\": \"2024-01-01 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 232281,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": \"Wintersport\",\n            \"start_date\": \"2024-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-02 11:57:58\",\n            \"updated_at\": \"2024-01-08 08:25:36\",\n            \"approval\": {\n                \"id\": 277252,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 232281,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-08 08:25:38\",\n                \"created_at\": \"2024-01-02 11:57:58\",\n                \"updated_at\": \"2024-01-08 08:25:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233565,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"88.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2024-01-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-09 09:54:16\",\n            \"updated_at\": \"2024-01-09 09:54:16\",\n            \"approval\": {\n                \"id\": 281330,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 233565,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-23 00:00:05\",\n                \"created_at\": \"2024-01-09 09:54:16\",\n                \"updated_at\": \"2024-01-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 236090,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-23 12:43:38\",\n            \"updated_at\": \"2024-01-23 12:43:38\",\n            \"approval\": {\n                \"id\": 289590,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 236090,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-01 08:57:14\",\n                \"created_at\": \"2024-01-23 12:43:38\",\n                \"updated_at\": \"2024-02-01 08:57:14\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"120.00\",\n            \"reason\": \"wispo\",\n            \"start_date\": \"2024-02-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 08:59:15\",\n            \"updated_at\": \"2024-02-02 08:59:15\",\n            \"approval\": {\n                \"id\": 296759,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 237722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-02 15:15:49\",\n                \"created_at\": \"2024-02-02 08:59:15\",\n                \"updated_at\": \"2024-02-02 15:15:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237724,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:01:04\",\n            \"updated_at\": \"2024-02-02 09:01:04\",\n            \"approval\": {\n                \"id\": 296761,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 237724,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:07\",\n                \"created_at\": \"2024-02-02 09:01:04\",\n                \"updated_at\": \"2024-02-16 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237723,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-21\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:00:32\",\n            \"updated_at\": \"2024-02-02 09:00:32\",\n            \"approval\": {\n                \"id\": 296760,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 237723,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:06\",\n                \"created_at\": \"2024-02-02 09:00:32\",\n                \"updated_at\": \"2024-02-16 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 239730,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-15\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-02-17\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-02-15 09:25:36\",\n            \"updated_at\": \"2024-02-15 09:25:36\",\n            \"approval\": {\n                \"id\": 305251,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 239730,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-29 00:00:05\",\n                \"created_at\": \"2024-02-15 09:25:36\",\n                \"updated_at\": \"2024-02-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 240718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2024-02-22 10:10:07\",\n            \"updated_at\": \"2024-02-22 10:10:07\",\n            \"approval\": {\n                \"id\": 309128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 240718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-06 09:16:56\",\n                \"created_at\": \"2024-02-22 10:10:07\",\n                \"updated_at\": \"2024-03-06 09:16:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 241964,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-04 08:12:31\",\n            \"updated_at\": \"2024-03-04 08:12:31\",\n            \"approval\": {\n                \"id\": 315469,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 241964,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-04 08:12:33\",\n                \"created_at\": \"2024-03-04 08:12:31\",\n                \"updated_at\": \"2024-03-04 08:12:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-03-07\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-11\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-03-07 09:27:23\",\n            \"updated_at\": \"2024-03-07 09:27:23\",\n            \"approval\": {\n                \"id\": 318692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-07 09:27:44\",\n                \"created_at\": \"2024-03-07 09:27:23\",\n                \"updated_at\": \"2024-03-07 09:27:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243183,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-15\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-11 14:43:29\",\n            \"updated_at\": \"2024-03-11 14:43:29\",\n            \"approval\": {\n                \"id\": 321174,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 243183,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-11 14:43:44\",\n                \"created_at\": \"2024-03-11 14:43:29\",\n                \"updated_at\": \"2024-03-11 14:43:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243676,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-13 16:11:43\",\n            \"updated_at\": \"2024-03-13 16:11:43\",\n            \"approval\": {\n                \"id\": 323295,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 243676,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 00:00:05\",\n                \"created_at\": \"2024-03-13 16:11:43\",\n                \"updated_at\": \"2024-03-27 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 244168,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-18 08:37:48\",\n            \"updated_at\": \"2024-03-18 08:37:48\",\n            \"approval\": {\n                \"id\": 325872,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 244168,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-18 08:37:54\",\n                \"created_at\": \"2024-03-18 08:37:48\",\n                \"updated_at\": \"2024-03-18 08:37:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-07 13:57:20\",\n            \"updated_at\": \"2024-03-07 13:57:20\",\n            \"approval\": {\n                \"id\": 318993,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242706,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:49:48\",\n                \"created_at\": \"2024-03-07 13:57:20\",\n                \"updated_at\": \"2024-03-25 12:49:48\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 245564,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-25 12:50:20\",\n            \"updated_at\": \"2024-03-25 12:50:20\",\n            \"approval\": {\n                \"id\": 330841,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 245564,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:50:28\",\n                \"created_at\": \"2024-03-25 12:50:20\",\n                \"updated_at\": \"2024-03-25 12:50:28\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245813,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-26\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:42:07\",\n            \"updated_at\": \"2024-03-26 13:42:07\",\n            \"approval\": {\n                \"id\": 331804,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245813,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-26 13:42:11\",\n                \"created_at\": \"2024-03-26 13:42:07\",\n                \"updated_at\": \"2024-03-26 13:42:11\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245883,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-27 08:25:04\",\n            \"updated_at\": \"2024-03-27 08:25:04\",\n            \"approval\": {\n                \"id\": 332177,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245883,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 08:25:08\",\n                \"created_at\": \"2024-03-27 08:25:04\",\n                \"updated_at\": \"2024-03-27 08:25:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245737,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Goede Vrijdag\",\n            \"start_date\": \"2024-03-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 09:43:02\",\n            \"updated_at\": \"2024-03-26 09:43:02\",\n            \"approval\": {\n                \"id\": 331561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 245737,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-09 00:00:05\",\n                \"created_at\": \"2024-03-26 09:43:02\",\n                \"updated_at\": \"2024-04-09 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245812,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:41:31\",\n            \"updated_at\": \"2024-04-02 15:27:51\",\n            \"approval\": {\n                \"id\": 331803,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 245812,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-02 15:28:22\",\n                \"created_at\": \"2024-03-26 13:41:31\",\n                \"updated_at\": \"2024-04-02 15:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247497,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-08\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-08 07:57:21\",\n            \"updated_at\": \"2024-04-08 07:57:21\",\n            \"approval\": {\n                \"id\": 340443,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247497,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-08 07:57:23\",\n                \"created_at\": \"2024-04-08 07:57:21\",\n                \"updated_at\": \"2024-04-08 07:57:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 248287,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-12 08:04:30\",\n            \"updated_at\": \"2024-04-12 08:04:30\",\n            \"approval\": {\n                \"id\": 344053,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 248287,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-12 08:04:33\",\n                \"created_at\": \"2024-04-12 08:04:30\",\n                \"updated_at\": \"2024-04-12 08:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247091,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-04 12:22:36\",\n            \"updated_at\": \"2024-04-15 07:50:53\",\n            \"approval\": {\n                \"id\": 338597,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247091,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-15 07:50:55\",\n                \"created_at\": \"2024-04-04 12:22:36\",\n                \"updated_at\": \"2024-04-15 07:50:55\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249894,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-22 12:43:23\",\n            \"updated_at\": \"2024-04-22 12:43:23\",\n            \"approval\": {\n                \"id\": 350377,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249894,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 00:00:05\",\n                \"created_at\": \"2024-04-22 12:43:23\",\n                \"updated_at\": \"2024-05-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249343,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:23:47\",\n            \"updated_at\": \"2024-04-18 11:23:47\",\n            \"approval\": {\n                \"id\": 348134,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249343,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-18 11:23:53\",\n                \"created_at\": \"2024-04-18 11:23:47\",\n                \"updated_at\": \"2024-04-18 11:23:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249345,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:24:09\",\n            \"updated_at\": \"2024-04-25 11:59:59\",\n            \"approval\": {\n                \"id\": 348136,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 249345,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-25 12:00:02\",\n                \"created_at\": \"2024-04-18 11:24:09\",\n                \"updated_at\": \"2024-04-25 12:00:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251414,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-05-01\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-05-06\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-05-01 11:14:35\",\n            \"updated_at\": \"2024-05-01 11:14:35\",\n            \"approval\": {\n                \"id\": 357345,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251414,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-02 13:17:15\",\n                \"created_at\": \"2024-05-01 11:14:35\",\n                \"updated_at\": \"2024-05-02 13:17:15\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251131,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:39:53\",\n            \"updated_at\": \"2024-04-30 07:39:53\",\n            \"approval\": {\n                \"id\": 355572,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 251131,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:39:56\",\n                \"created_at\": \"2024-04-30 07:39:53\",\n                \"updated_at\": \"2024-04-30 07:39:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251134,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-09\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-10\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:40:54\",\n            \"updated_at\": \"2024-04-30 07:40:54\",\n            \"approval\": {\n                \"id\": 355577,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251134,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:40:57\",\n                \"created_at\": \"2024-04-30 07:40:54\",\n                \"updated_at\": \"2024-04-30 07:40:57\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251136,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:42:03\",\n            \"updated_at\": \"2024-04-30 07:42:03\",\n            \"approval\": {\n                \"id\": 355583,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 251136,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:42:07\",\n                \"created_at\": \"2024-04-30 07:42:03\",\n                \"updated_at\": \"2024-04-30 07:42:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253612,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:08:35\",\n            \"updated_at\": \"2024-05-15 12:08:35\",\n            \"approval\": {\n                \"id\": 366223,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 253612,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-15 12:08:45\",\n                \"created_at\": \"2024-05-15 12:08:35\",\n                \"updated_at\": \"2024-05-15 12:08:45\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253613,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:09:38\",\n            \"updated_at\": \"2024-05-15 12:09:38\",\n            \"approval\": {\n                \"id\": 366225,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 253613,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-29 00:00:07\",\n                \"created_at\": \"2024-05-15 12:09:38\",\n                \"updated_at\": \"2024-05-29 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253819,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191307,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-16 11:21:06\",\n            \"updated_at\": \"2024-05-16 11:21:06\",\n            \"approval\": {\n                \"id\": 366921,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 253819,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 145942,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-16 11:21:08\",\n                \"created_at\": \"2024-05-16 11:21:06\",\n                \"updated_at\": \"2024-05-16 11:21:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 250639,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-21\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-26 08:50:58\",\n            \"updated_at\": \"2024-05-06 08:00:36\",\n            \"approval\": {\n                \"id\": 353507,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 250639,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 08:00:39\",\n                \"created_at\": \"2024-04-26 08:50:58\",\n                \"updated_at\": \"2024-05-06 08:00:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 255715,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-30\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-04\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-30 10:45:10\",\n            \"updated_at\": \"2024-05-30 10:45:10\",\n            \"approval\": {\n                \"id\": 375237,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 255715,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 09:00:41\",\n                \"created_at\": \"2024-05-30 10:45:10\",\n                \"updated_at\": \"2024-06-10 09:00:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 256926,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-07 14:21:28\",\n            \"updated_at\": \"2024-06-07 14:21:28\",\n            \"approval\": {\n                \"id\": 382306,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 256926,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-07 14:21:32\",\n                \"created_at\": \"2024-06-07 14:21:28\",\n                \"updated_at\": \"2024-06-07 14:21:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257084,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-14\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:34:38\",\n            \"updated_at\": \"2024-06-10 07:34:48\",\n            \"approval\": {\n                \"id\": 383048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257084,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:34:59\",\n                \"created_at\": \"2024-06-10 07:34:38\",\n                \"updated_at\": \"2024-06-10 07:34:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257474,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-11 13:23:11\",\n            \"updated_at\": \"2024-06-11 13:23:11\",\n            \"approval\": {\n                \"id\": 384784,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257474,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-19 08:19:42\",\n                \"created_at\": \"2024-06-11 13:23:11\",\n                \"updated_at\": \"2024-06-19 08:19:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258138,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"midweekje met de vrouw\",\n            \"start_date\": \"2024-06-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-17 09:17:50\",\n            \"updated_at\": \"2024-06-17 09:17:50\",\n            \"approval\": {\n                \"id\": 388429,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 258138,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-17 09:18:25\",\n                \"created_at\": \"2024-06-17 09:17:50\",\n                \"updated_at\": \"2024-06-17 09:18:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257086,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:35:23\",\n            \"updated_at\": \"2024-06-10 07:35:23\",\n            \"approval\": {\n                \"id\": 383050,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 257086,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:35:26\",\n                \"created_at\": \"2024-06-10 07:35:23\",\n                \"updated_at\": \"2024-06-10 07:35:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259520,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:11\",\n            \"updated_at\": \"2024-06-25 07:34:11\",\n            \"approval\": {\n                \"id\": 394199,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259520,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-25 07:34:16\",\n                \"created_at\": \"2024-06-25 07:34:11\",\n                \"updated_at\": \"2024-06-25 07:34:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259524,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:35\",\n            \"updated_at\": \"2024-06-25 07:34:35\",\n            \"approval\": {\n                \"id\": 394203,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 259524,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 12:05:40\",\n                \"created_at\": \"2024-06-25 07:34:35\",\n                \"updated_at\": \"2024-07-05 12:05:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 259373,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"12.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-24 13:39:40\",\n            \"updated_at\": \"2024-07-02 09:26:16\",\n            \"approval\": {\n                \"id\": 393668,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 259373,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-08 00:00:05\",\n                \"created_at\": \"2024-06-24 13:39:40\",\n                \"updated_at\": \"2024-07-08 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259685,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 11:27:15\",\n            \"updated_at\": \"2024-07-02 09:25:42\",\n            \"approval\": {\n                \"id\": 394542,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259685,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 00:00:08\",\n                \"created_at\": \"2024-06-25 11:27:15\",\n                \"updated_at\": \"2024-07-09 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-31\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:50:07\",\n            \"updated_at\": \"2024-07-09 11:50:07\",\n            \"approval\": {\n                \"id\": 405825,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 262245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:50:10\",\n                \"created_at\": \"2024-07-09 11:50:07\",\n                \"updated_at\": \"2024-07-09 11:50:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262244,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:49:21\",\n            \"updated_at\": \"2024-07-09 11:49:21\",\n            \"approval\": {\n                \"id\": 405824,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 262244,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 12:28:17\",\n                \"created_at\": \"2024-07-09 11:49:21\",\n                \"updated_at\": \"2024-07-09 12:28:17\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 261664,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-05 10:35:54\",\n            \"updated_at\": \"2024-07-05 10:35:54\",\n            \"approval\": {\n                \"id\": 403271,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 261664,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 10:36:03\",\n                \"created_at\": \"2024-07-05 10:35:54\",\n                \"updated_at\": \"2024-07-05 10:36:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258953,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191305,\n            \"hours\": \"72.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-21 09:37:28\",\n            \"updated_at\": \"2024-06-21 09:37:28\",\n            \"approval\": {\n                \"id\": 392094,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 258953,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 07:33:18\",\n                \"created_at\": \"2024-06-21 09:37:28\",\n                \"updated_at\": \"2024-07-24 07:33:18\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262541,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-17\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-11 10:06:32\",\n            \"updated_at\": \"2024-07-11 10:06:32\",\n            \"approval\": {\n                \"id\": 407080,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262541,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-25 00:00:05\",\n                \"created_at\": \"2024-07-11 10:06:32\",\n                \"updated_at\": \"2024-07-25 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262246,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2024-07-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:51:35\",\n            \"updated_at\": \"2024-07-09 11:51:35\",\n            \"approval\": {\n                \"id\": 405826,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262246,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:51:40\",\n                \"created_at\": \"2024-07-09 11:51:35\",\n                \"updated_at\": \"2024-07-09 11:51:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 265119,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Huwelijk\",\n            \"start_date\": \"2024-07-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-29 13:56:24\",\n            \"updated_at\": \"2024-07-29 13:56:24\",\n            \"approval\": {\n                \"id\": 417658,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 265119,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 00:00:05\",\n                \"created_at\": \"2024-07-29 13:56:24\",\n                \"updated_at\": \"2024-08-12 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 264647,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-26 07:35:14\",\n            \"updated_at\": \"2024-08-05 10:59:13\",\n            \"approval\": {\n                \"id\": 416162,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 264647,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 10:59:16\",\n                \"created_at\": \"2024-07-26 07:35:14\",\n                \"updated_at\": \"2024-08-05 10:59:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 266319,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-05 10:59:54\",\n            \"updated_at\": \"2024-08-05 10:59:54\",\n            \"approval\": {\n                \"id\": 423012,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 266319,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 11:01:01\",\n                \"created_at\": \"2024-08-05 10:59:54\",\n                \"updated_at\": \"2024-08-05 11:01:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267428,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:32:21\",\n            \"updated_at\": \"2024-08-12 10:32:21\",\n            \"approval\": {\n                \"id\": 426493,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 267428,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-14 09:53:53\",\n                \"created_at\": \"2024-08-12 10:32:21\",\n                \"updated_at\": \"2024-08-14 09:53:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267427,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:31:56\",\n            \"updated_at\": \"2024-08-12 10:31:56\",\n            \"approval\": {\n                \"id\": 426492,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 267427,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 10:32:05\",\n                \"created_at\": \"2024-08-12 10:31:56\",\n                \"updated_at\": \"2024-08-12 10:32:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268249,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-19 11:17:46\",\n            \"updated_at\": \"2024-08-19 11:17:46\",\n            \"approval\": {\n                \"id\": 429949,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 268249,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-02 00:00:07\",\n                \"created_at\": \"2024-08-19 11:17:46\",\n                \"updated_at\": \"2024-09-02 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 263904,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-19 07:35:04\",\n            \"updated_at\": \"2024-07-19 07:35:04\",\n            \"approval\": {\n                \"id\": 412359,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 263904,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 08:16:32\",\n                \"created_at\": \"2024-07-19 07:35:04\",\n                \"updated_at\": \"2024-07-24 08:16:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 269483,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-28\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-28\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-27 11:50:24\",\n            \"updated_at\": \"2024-08-27 11:50:24\",\n            \"approval\": {\n                \"id\": 435303,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 269483,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-10 00:00:09\",\n                \"created_at\": \"2024-08-27 11:50:24\",\n                \"updated_at\": \"2024-09-10 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"52.00\",\n            \"reason\": \"Weekje Spanje\",\n            \"start_date\": \"2024-08-31\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-08-22 13:11:35\",\n            \"updated_at\": \"2024-09-01 16:15:05\",\n            \"approval\": {\n                \"id\": 432189,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 268855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-01 16:15:10\",\n                \"created_at\": \"2024-08-22 13:11:35\",\n                \"updated_at\": \"2024-09-01 16:15:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270622,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"4.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-04 09:56:20\",\n            \"updated_at\": \"2024-09-04 09:56:20\",\n            \"approval\": {\n                \"id\": 444256,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270622,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:29\",\n                \"created_at\": \"2024-09-04 09:56:20\",\n                \"updated_at\": \"2024-09-11 13:10:29\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270768,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-05 08:30:19\",\n            \"updated_at\": \"2024-09-05 08:30:19\",\n            \"approval\": {\n                \"id\": 445287,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270768,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:59\",\n                \"created_at\": \"2024-09-05 08:30:19\",\n                \"updated_at\": \"2024-09-11 13:10:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 271887,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-12 12:26:40\",\n            \"updated_at\": \"2024-09-12 12:26:40\",\n            \"approval\": {\n                \"id\": 452856,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 271887,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-12 12:27:20\",\n                \"created_at\": \"2024-09-12 12:26:40\",\n                \"updated_at\": \"2024-09-12 12:27:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272021,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"0.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-18\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-13 09:16:07\",\n            \"updated_at\": \"2024-09-13 09:16:07\",\n            \"approval\": {\n                \"id\": 453813,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 272021,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-13 11:49:42\",\n                \"created_at\": \"2024-09-13 09:16:07\",\n                \"updated_at\": \"2024-09-13 11:49:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272935,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-19 07:50:50\",\n            \"updated_at\": \"2024-09-19 07:50:50\",\n            \"approval\": {\n                \"id\": 459293,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 272935,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-19 07:50:54\",\n                \"created_at\": \"2024-09-19 07:50:50\",\n                \"updated_at\": \"2024-09-19 07:50:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273831,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"13.02\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-25\",\n            \"start_time\": \"09:14\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"10:15\",\n            \"created_at\": \"2024-09-25 08:19:43\",\n            \"updated_at\": \"2024-09-25 08:19:43\",\n            \"approval\": {\n                \"id\": 464718,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 273831,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-25 08:19:43\",\n                \"created_at\": \"2024-09-25 08:19:43\",\n                \"updated_at\": \"2024-09-25 08:19:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 274057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"28.00\",\n            \"reason\": \"weekend weg\",\n            \"start_date\": \"2024-09-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-03\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-26 09:43:50\",\n            \"updated_at\": \"2024-09-26 09:43:50\",\n            \"approval\": {\n                \"id\": 466280,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 274057,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-26 12:04:33\",\n                \"created_at\": \"2024-09-26 09:43:50\",\n                \"updated_at\": \"2024-09-26 12:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273719,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-27\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-24 12:14:25\",\n            \"updated_at\": \"2024-09-24 12:14:25\",\n            \"approval\": {\n                \"id\": 463911,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 273719,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-24 12:14:25\",\n                \"created_at\": \"2024-09-24 12:14:25\",\n                \"updated_at\": \"2024-09-24 12:14:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 275695,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"lang weekend weg\",\n            \"start_date\": \"2024-10-10\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-15\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-07 09:22:20\",\n            \"updated_at\": \"2024-10-08 07:41:39\",\n            \"approval\": {\n                \"id\": 478491,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 275695,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:41:44\",\n                \"created_at\": \"2024-10-07 09:22:20\",\n                \"updated_at\": \"2024-10-08 07:41:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 275876,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191304,\n            \"hours\": \"384.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-14\",\n            \"start_time\": null,\n            \"end_date\": \"2025-02-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-10-08 07:43:46\",\n            \"updated_at\": \"2024-10-08 07:43:46\",\n            \"approval\": {\n                \"id\": 479809,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 275876,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:44:16\",\n                \"created_at\": \"2024-10-08 07:43:46\",\n                \"updated_at\": \"2024-10-08 07:44:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 274862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"19.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-23\",\n            \"start_time\": \"14:00\",\n            \"end_date\": \"2024-10-27\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-01 12:48:35\",\n            \"updated_at\": \"2024-10-21 08:21:27\",\n            \"approval\": {\n                \"id\": 472584,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 274862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-21 08:21:38\",\n                \"created_at\": \"2024-10-01 12:48:35\",\n                \"updated_at\": \"2024-10-21 08:21:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        }\n    ]\n}"},{"id":"450fef7b-446f-4c76-93ed-4ecc50785acb","name":"Leave requests","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/leave-requests?sort=start_date","host":["https://api.buddee.nl"],"path":["leave-requests"],"query":[{"key":"sort","value":"start_date"},{"key":"employee_id","value":"","description":"Employee id","disabled":true},{"key":"leave_type_id","value":"{{leave_type_id}}","description":"Leave type id","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 15:23:35 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 146,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 196423,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-19\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-05 15:00:31\",\n            \"updated_at\": \"2021-06-17 12:29:01\",\n            \"approval\": {\n                \"id\": 119684,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196423,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week !\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-06-17 12:29:01\",\n                \"created_at\": \"2021-05-05 15:00:31\",\n                \"updated_at\": \"2021-06-17 12:29:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196393,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-29\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-30\",\n            \"end_time\": null,\n            \"created_at\": \"2021-04-29 08:54:47\",\n            \"updated_at\": \"2021-11-08 07:54:35\",\n            \"approval\": {\n                \"id\": 119654,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196393,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:35\",\n                \"created_at\": \"2021-04-29 08:54:47\",\n                \"updated_at\": \"2021-11-08 07:54:35\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-05-06\",\n            \"start_time\": null,\n            \"end_date\": \"2021-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-06 13:18:16\",\n            \"updated_at\": \"2021-11-08 07:54:26\",\n            \"approval\": {\n                \"id\": 119694,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, teveel mensen met vakantie\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:26\",\n                \"created_at\": \"2021-05-06 13:18:16\",\n                \"updated_at\": \"2021-11-08 07:54:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197276,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"15.50\",\n            \"reason\": null,\n            \"start_date\": \"2021-09-29\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2021-09-30\",\n            \"end_time\": \"16:30\",\n            \"created_at\": \"2021-09-29 10:45:14\",\n            \"updated_at\": \"2021-11-08 07:54:52\",\n            \"approval\": {\n                \"id\": 120506,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 197276,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:52\",\n                \"created_at\": \"2021-09-29 10:45:14\",\n                \"updated_at\": \"2021-11-08 07:54:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 198358,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg\",\n            \"start_date\": \"2022-02-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-02-12\",\n            \"end_time\": null,\n            \"created_at\": \"2022-02-10 10:38:19\",\n            \"updated_at\": \"2022-02-10 10:38:19\",\n            \"approval\": {\n                \"id\": 131288,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198358,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-02-10 10:38:40\",\n                \"created_at\": \"2022-02-10 10:38:19\",\n                \"updated_at\": \"2022-02-10 10:38:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198609,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Midweekje vakantie\",\n            \"start_date\": \"2022-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-01 11:24:16\",\n            \"updated_at\": \"2022-03-01 11:24:16\",\n            \"approval\": {\n                \"id\": 132354,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198609,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-01 11:24:33\",\n                \"created_at\": \"2022-03-01 11:24:16\",\n                \"updated_at\": \"2022-03-01 11:24:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-03-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-09 11:01:21\",\n            \"updated_at\": \"2022-03-09 11:01:21\",\n            \"approval\": {\n                \"id\": 132675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198705,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-23 00:00:05\",\n                \"created_at\": \"2022-03-09 11:01:21\",\n                \"updated_at\": \"2022-03-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 199761,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"6.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-05-20\",\n            \"start_time\": \"11:00\",\n            \"end_date\": \"2022-05-21\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2022-05-20 10:20:39\",\n            \"updated_at\": \"2022-05-20 10:20:39\",\n            \"approval\": {\n                \"id\": 137599,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 199761,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-05-20 10:20:43\",\n                \"created_at\": \"2022-05-20 10:20:39\",\n                \"updated_at\": \"2022-05-20 10:20:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200004,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-06-08\",\n            \"start_time\": null,\n            \"end_date\": \"2022-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-06-08 09:17:58\",\n            \"updated_at\": \"2022-06-08 09:17:58\",\n            \"approval\": {\n                \"id\": 139024,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200004,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-06-22 00:00:04\",\n                \"created_at\": \"2022-06-08 09:17:58\",\n                \"updated_at\": \"2022-06-22 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200468,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-06\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-05 11:13:08\",\n            \"updated_at\": \"2022-07-05 11:13:08\",\n            \"approval\": {\n                \"id\": 141383,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200468,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-19 00:00:04\",\n                \"created_at\": \"2022-07-05 11:13:08\",\n                \"updated_at\": \"2022-07-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200830,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-20 20:59:20\",\n            \"updated_at\": \"2022-07-20 20:59:20\",\n            \"approval\": {\n                \"id\": 142560,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200830,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-20 20:59:24\",\n                \"created_at\": \"2022-07-20 20:59:20\",\n                \"updated_at\": \"2022-07-20 20:59:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201545,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-01\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:23:19\",\n            \"updated_at\": \"2022-08-30 11:23:19\",\n            \"approval\": {\n                \"id\": 145567,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201545,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:23:19\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-08-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-10 12:48:54\",\n            \"updated_at\": \"2022-08-10 12:48:54\",\n            \"approval\": {\n                \"id\": 144205,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-08-16 08:39:24\",\n                \"created_at\": \"2022-08-10 12:48:54\",\n                \"updated_at\": \"2022-08-16 08:39:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201540,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 08:06:47\",\n            \"updated_at\": \"2022-08-30 08:06:47\",\n            \"approval\": {\n                \"id\": 145544,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201540,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:16:39\",\n                \"created_at\": \"2022-08-30 08:06:47\",\n                \"updated_at\": \"2022-09-02 08:16:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201543,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:17:13\",\n            \"updated_at\": \"2022-08-30 11:17:13\",\n            \"approval\": {\n                \"id\": 145565,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201543,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:04\",\n                \"created_at\": \"2022-08-30 11:17:13\",\n                \"updated_at\": \"2022-09-13 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201544,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:21:04\",\n            \"updated_at\": \"2022-08-30 11:21:04\",\n            \"approval\": {\n                \"id\": 145566,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201544,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:21:04\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201573,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-02\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-02\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-31 08:06:15\",\n            \"updated_at\": \"2022-08-31 08:06:15\",\n            \"approval\": {\n                \"id\": 145712,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201573,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-14 00:00:04\",\n                \"created_at\": \"2022-08-31 08:06:15\",\n                \"updated_at\": \"2022-09-14 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-02 08:17:33\",\n            \"updated_at\": \"2022-09-02 08:17:33\",\n            \"approval\": {\n                \"id\": 146110,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:17:42\",\n                \"created_at\": \"2022-09-02 08:17:33\",\n                \"updated_at\": \"2022-09-02 08:17:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201738,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-07\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-06 11:14:48\",\n            \"updated_at\": \"2022-09-06 11:14:48\",\n            \"approval\": {\n                \"id\": 146619,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201738,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-20 00:00:05\",\n                \"created_at\": \"2022-09-06 11:14:48\",\n                \"updated_at\": \"2022-09-20 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201677,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-09-09\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2022-09-12\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2022-09-05 08:44:06\",\n            \"updated_at\": \"2022-09-05 08:44:06\",\n            \"approval\": {\n                \"id\": 146480,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201677,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-19 00:00:04\",\n                \"created_at\": \"2022-09-05 08:44:06\",\n                \"updated_at\": \"2022-09-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201790,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-12\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-16\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-08 09:52:59\",\n            \"updated_at\": \"2022-09-08 09:52:59\",\n            \"approval\": {\n                \"id\": 146839,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201790,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-17 11:01:23\",\n                \"created_at\": \"2022-09-08 09:52:59\",\n                \"updated_at\": \"2022-10-17 11:01:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202156,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-29 07:46:38\",\n            \"updated_at\": \"2022-09-29 07:46:38\",\n            \"approval\": {\n                \"id\": 149079,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202156,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-13 00:00:03\",\n                \"created_at\": \"2022-09-29 07:46:38\",\n                \"updated_at\": \"2022-10-13 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202655,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-19 08:56:47\",\n            \"updated_at\": \"2022-10-19 08:56:47\",\n            \"approval\": {\n                \"id\": 151650,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202655,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:02:58\",\n                \"created_at\": \"2022-10-19 08:56:47\",\n                \"updated_at\": \"2022-10-26 09:02:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202635,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-18 13:43:51\",\n            \"updated_at\": \"2022-10-18 13:43:51\",\n            \"approval\": {\n                \"id\": 151578,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202635,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:40\",\n                \"created_at\": \"2022-10-18 13:43:51\",\n                \"updated_at\": \"2022-10-26 09:03:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-20 11:14:13\",\n            \"updated_at\": \"2022-10-20 11:14:13\",\n            \"approval\": {\n                \"id\": 151829,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:04\",\n                \"created_at\": \"2022-10-20 11:14:13\",\n                \"updated_at\": \"2022-10-26 09:03:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202863,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-27\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 08:29:42\",\n            \"updated_at\": \"2022-10-26 08:29:42\",\n            \"approval\": {\n                \"id\": 152437,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202863,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:12\",\n                \"created_at\": \"2022-10-26 08:29:42\",\n                \"updated_at\": \"2022-10-26 09:03:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202896,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-04\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-27 09:45:36\",\n            \"updated_at\": \"2022-10-27 09:45:36\",\n            \"approval\": {\n                \"id\": 152561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202896,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-10 00:00:04\",\n                \"created_at\": \"2022-10-27 09:45:36\",\n                \"updated_at\": \"2022-11-10 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203875,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"176.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 13:43:41\",\n            \"updated_at\": \"2022-11-24 13:43:41\",\n            \"approval\": {\n                \"id\": 156663,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203875,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Mag niet\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 13:44:02\",\n                \"created_at\": \"2022-11-24 13:43:41\",\n                \"updated_at\": \"2022-11-24 13:44:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-09 09:09:37\",\n            \"updated_at\": \"2022-11-09 09:09:37\",\n            \"approval\": {\n                \"id\": 154517,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 14:37:58\",\n                \"created_at\": \"2022-11-09 09:09:37\",\n                \"updated_at\": \"2022-11-09 14:37:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203869,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-21\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 12:40:05\",\n            \"updated_at\": \"2022-11-24 12:40:05\",\n            \"approval\": {\n                \"id\": 156651,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203869,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 12:40:38\",\n                \"created_at\": \"2022-11-24 12:40:05\",\n                \"updated_at\": \"2022-11-24 12:40:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203982,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-28\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:50:08\",\n            \"updated_at\": \"2022-11-28 13:50:08\",\n            \"approval\": {\n                \"id\": 157133,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203982,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-01 10:37:47\",\n                \"created_at\": \"2022-11-28 13:50:08\",\n                \"updated_at\": \"2022-12-01 10:37:47\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203637,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"208.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-17 13:38:31\",\n            \"updated_at\": \"2022-11-17 13:38:31\",\n            \"approval\": {\n                \"id\": 155624,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203637,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-17 13:39:02\",\n                \"created_at\": \"2022-11-17 13:38:31\",\n                \"updated_at\": \"2022-11-17 13:39:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203915,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-25 13:29:01\",\n            \"updated_at\": \"2022-11-25 13:29:01\",\n            \"approval\": {\n                \"id\": 156812,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203915,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"test\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-25 13:29:41\",\n                \"created_at\": \"2022-11-25 13:29:01\",\n                \"updated_at\": \"2022-11-25 13:29:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 09:25:09\",\n            \"updated_at\": \"2022-12-20 09:25:09\",\n            \"approval\": {\n                \"id\": 160424,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:04\",\n                \"created_at\": \"2022-12-20 09:25:09\",\n                \"updated_at\": \"2023-01-03 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204741,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Dagje vrij\",\n            \"start_date\": \"2022-12-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:07:53\",\n            \"updated_at\": \"2022-12-20 13:07:53\",\n            \"approval\": {\n                \"id\": 160494,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204741,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:07:53\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203981,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:36:08\",\n            \"updated_at\": \"2022-11-28 13:36:08\",\n            \"approval\": {\n                \"id\": 157128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203981,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-28 13:36:58\",\n                \"created_at\": \"2022-11-28 13:36:08\",\n                \"updated_at\": \"2022-11-28 13:36:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204488,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-12 13:46:47\",\n            \"updated_at\": \"2022-12-12 13:46:47\",\n            \"approval\": {\n                \"id\": 159370,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204488,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-26 00:00:04\",\n                \"created_at\": \"2022-12-12 13:46:47\",\n                \"updated_at\": \"2022-12-26 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204742,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"vakantie\",\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:17:40\",\n            \"updated_at\": \"2022-12-20 13:17:40\",\n            \"approval\": {\n                \"id\": 160495,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204742,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-20 13:18:31\",\n                \"created_at\": \"2022-12-20 13:17:40\",\n                \"updated_at\": \"2022-12-20 13:18:31\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204823,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-22 10:11:11\",\n            \"updated_at\": \"2022-12-22 10:11:11\",\n            \"approval\": {\n                \"id\": 160843,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204823,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-22 10:11:56\",\n                \"created_at\": \"2022-12-22 10:11:11\",\n                \"updated_at\": \"2022-12-22 10:11:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204968,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-29 08:35:46\",\n            \"updated_at\": \"2022-12-29 08:35:46\",\n            \"approval\": {\n                \"id\": 161549,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204968,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, want dan zijn er al 2 collega's weg\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-10 14:45:07\",\n                \"created_at\": \"2022-12-29 08:35:46\",\n                \"updated_at\": \"2023-01-10 14:45:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204802,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-07\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-21 13:09:28\",\n            \"updated_at\": \"2022-12-21 13:09:28\",\n            \"approval\": {\n                \"id\": 160675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204802,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-21 13:09:38\",\n                \"created_at\": \"2022-12-21 13:09:28\",\n                \"updated_at\": \"2022-12-21 13:09:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204743,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:20:23\",\n            \"updated_at\": \"2022-12-20 13:20:23\",\n            \"approval\": {\n                \"id\": 160496,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204743,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:20:23\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 205663,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-13 14:04:01\",\n            \"updated_at\": \"2023-01-13 14:04:01\",\n            \"approval\": {\n                \"id\": 163964,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205663,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-13 14:04:25\",\n                \"created_at\": \"2023-01-13 14:04:01\",\n                \"updated_at\": \"2023-01-13 14:04:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205506,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-27\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-11 11:11:05\",\n            \"updated_at\": \"2023-01-11 11:11:05\",\n            \"approval\": {\n                \"id\": 163528,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205506,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-11 11:11:49\",\n                \"created_at\": \"2023-01-11 11:11:05\",\n                \"updated_at\": \"2023-01-11 11:11:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-19 12:14:43\",\n            \"updated_at\": \"2023-01-19 12:14:43\",\n            \"approval\": {\n                \"id\": 164756,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-19 12:15:19\",\n                \"created_at\": \"2023-01-19 12:14:43\",\n                \"updated_at\": \"2023-01-19 12:15:19\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 206245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"104.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-30 12:44:46\",\n            \"updated_at\": \"2023-01-30 12:44:46\",\n            \"approval\": {\n                \"id\": 166418,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-30 12:45:12\",\n                \"created_at\": \"2023-01-30 12:44:46\",\n                \"updated_at\": \"2023-01-30 12:45:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202867,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:04:02\",\n            \"updated_at\": \"2022-10-26 09:04:02\",\n            \"approval\": {\n                \"id\": 152456,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202867,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:04:04\",\n                \"created_at\": \"2022-10-26 09:04:02\",\n                \"updated_at\": \"2022-10-26 09:04:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 206942,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-20\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-02-13 13:09:59\",\n            \"updated_at\": \"2023-02-13 13:09:59\",\n            \"approval\": {\n                \"id\": 169385,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206942,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-02-27 00:00:04\",\n                \"created_at\": \"2023-02-13 13:09:59\",\n                \"updated_at\": \"2023-02-27 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204539,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-13 12:39:47\",\n            \"updated_at\": \"2022-12-13 12:39:47\",\n            \"approval\": {\n                \"id\": 159552,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204539,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-13 12:40:32\",\n                \"created_at\": \"2022-12-13 12:39:47\",\n                \"updated_at\": \"2022-12-13 12:40:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 208038,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-06\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-09 10:11:34\",\n            \"updated_at\": \"2023-03-09 10:11:34\",\n            \"approval\": {\n                \"id\": 174513,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208038,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-09 10:12:41\",\n                \"created_at\": \"2023-03-09 10:11:34\",\n                \"updated_at\": \"2023-03-09 10:12:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 208946,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-04-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-31 12:09:32\",\n            \"updated_at\": \"2023-03-31 12:09:32\",\n            \"approval\": {\n                \"id\": 179569,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208946,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-31 12:09:54\",\n                \"created_at\": \"2023-03-31 12:09:32\",\n                \"updated_at\": \"2023-03-31 12:09:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202868,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-05-07\",\n            \"start_time\": null,\n            \"end_date\": \"2023-05-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:09:48\",\n            \"updated_at\": \"2022-10-26 09:09:48\",\n            \"approval\": {\n                \"id\": 152457,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202868,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 00:00:03\",\n                \"created_at\": \"2022-10-26 09:09:48\",\n                \"updated_at\": \"2022-11-09 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 212983,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-05\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-02 11:44:10\",\n            \"updated_at\": \"2023-06-02 11:44:10\",\n            \"approval\": {\n                \"id\": 198178,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 212983,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-16 00:00:04\",\n                \"created_at\": \"2023-06-02 11:44:10\",\n                \"updated_at\": \"2023-06-16 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 214487,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-19 10:50:57\",\n            \"updated_at\": \"2023-06-19 10:50:57\",\n            \"approval\": {\n                \"id\": 203643,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 214487,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-27 10:21:54\",\n                \"created_at\": \"2023-06-19 10:50:57\",\n                \"updated_at\": \"2023-06-27 10:21:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216044,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-10 07:31:44\",\n            \"updated_at\": \"2023-07-10 07:31:44\",\n            \"approval\": {\n                \"id\": 212048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216044,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-24 00:00:04\",\n                \"created_at\": \"2023-07-10 07:31:44\",\n                \"updated_at\": \"2023-07-24 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216941,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-21\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-21 12:31:36\",\n            \"updated_at\": \"2023-07-21 12:31:36\",\n            \"approval\": {\n                \"id\": 215869,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216941,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-08-04 00:00:04\",\n                \"created_at\": \"2023-07-21 12:31:36\",\n                \"updated_at\": \"2023-08-04 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216305,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-24\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-12 14:11:34\",\n            \"updated_at\": \"2023-07-12 14:11:34\",\n            \"approval\": {\n                \"id\": 213215,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216305,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-12 14:11:38\",\n                \"created_at\": \"2023-07-12 14:11:34\",\n                \"updated_at\": \"2023-07-12 14:11:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 219061,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 193188,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-08-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-08-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-08-25 08:41:46\",\n            \"updated_at\": \"2023-08-25 08:41:46\",\n            \"approval\": {\n                \"id\": 226086,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 219061,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-01 11:11:59\",\n                \"created_at\": \"2023-08-25 08:41:46\",\n                \"updated_at\": \"2023-11-01 11:11:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233018,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2023-09-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-17\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-08 08:24:56\",\n            \"updated_at\": \"2024-01-19 14:28:17\",\n            \"approval\": {\n                \"id\": 280187,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 233018,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-19 14:28:22\",\n                \"created_at\": \"2024-01-08 08:24:56\",\n                \"updated_at\": \"2024-01-19 14:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-15\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-15\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-15 12:58:37\",\n            \"updated_at\": \"2023-09-15 12:58:37\",\n            \"approval\": {\n                \"id\": 234343,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-29 00:00:05\",\n                \"created_at\": \"2023-09-15 12:58:37\",\n                \"updated_at\": \"2023-09-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-18 10:12:41\",\n            \"updated_at\": \"2023-09-18 10:12:41\",\n            \"approval\": {\n                \"id\": 234797,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-18 10:13:10\",\n                \"created_at\": \"2023-09-18 10:12:41\",\n                \"updated_at\": \"2023-09-18 10:13:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 221739,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-22\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-22 09:10:24\",\n            \"updated_at\": \"2023-09-22 09:10:24\",\n            \"approval\": {\n                \"id\": 236692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221739,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-06 00:00:05\",\n                \"created_at\": \"2023-09-22 09:10:24\",\n                \"updated_at\": \"2023-10-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221853,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-25 09:48:04\",\n            \"updated_at\": \"2023-09-25 09:48:04\",\n            \"approval\": {\n                \"id\": 237220,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221853,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-09 00:00:06\",\n                \"created_at\": \"2023-09-25 09:48:04\",\n                \"updated_at\": \"2023-10-09 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 222389,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-29\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-29 11:21:19\",\n            \"updated_at\": \"2023-09-29 11:21:19\",\n            \"approval\": {\n                \"id\": 239239,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 222389,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-13 00:00:05\",\n                \"created_at\": \"2023-09-29 11:21:19\",\n                \"updated_at\": \"2023-10-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 224376,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-10-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-16 09:38:16\",\n            \"updated_at\": \"2023-10-16 09:38:16\",\n            \"approval\": {\n                \"id\": 246156,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 224376,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-30 00:00:05\",\n                \"created_at\": \"2023-10-16 09:38:16\",\n                \"updated_at\": \"2023-10-30 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 225855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-31 10:00:46\",\n            \"updated_at\": \"2023-10-31 10:00:46\",\n            \"approval\": {\n                \"id\": 251894,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 225855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-31 10:00:49\",\n                \"created_at\": \"2023-10-31 10:00:46\",\n                \"updated_at\": \"2023-10-31 10:00:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226557,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg met gezin\",\n            \"start_date\": \"2023-11-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-13\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:40:00\",\n            \"updated_at\": \"2023-11-07 08:49:31\",\n            \"approval\": {\n                \"id\": 255010,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 226557,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-07 09:00:22\",\n                \"created_at\": \"2023-11-07 08:40:00\",\n                \"updated_at\": \"2023-11-07 09:00:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-14 11:35:15\",\n            \"updated_at\": \"2023-11-14 11:35:15\",\n            \"approval\": {\n                \"id\": 257858,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 227435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-14 11:35:20\",\n                \"created_at\": \"2023-11-14 11:35:15\",\n                \"updated_at\": \"2023-11-14 11:35:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227658,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-16 10:16:43\",\n            \"updated_at\": \"2023-11-16 10:16:43\",\n            \"approval\": {\n                \"id\": 258821,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 227658,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-30 00:00:04\",\n                \"created_at\": \"2023-11-16 10:16:43\",\n                \"updated_at\": \"2023-11-30 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 228261,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-22 09:42:12\",\n            \"updated_at\": \"2023-11-22 09:42:12\",\n            \"approval\": {\n                \"id\": 260903,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 228261,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-06 00:00:05\",\n                \"created_at\": \"2023-11-22 09:42:12\",\n                \"updated_at\": \"2023-12-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227550,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"29.42\",\n            \"reason\": \"Ski vakantie\",\n            \"start_date\": \"2023-11-30\",\n            \"start_time\": \"12:35\",\n            \"end_date\": \"2023-12-07\",\n            \"end_time\": \"10:00\",\n            \"created_at\": \"2023-11-15 10:37:10\",\n            \"updated_at\": \"2023-11-15 10:37:10\",\n            \"approval\": {\n                \"id\": 258393,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 227550,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Graag andere week ivm vakantie rest van het team\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-15 10:38:52\",\n                \"created_at\": \"2023-11-15 10:37:10\",\n                \"updated_at\": \"2023-11-15 10:38:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 229436,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-08\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2023-12-12\",\n            \"end_time\": \"14:00\",\n            \"created_at\": \"2023-12-04 09:52:03\",\n            \"updated_at\": \"2023-12-04 11:45:07\",\n            \"approval\": {\n                \"id\": 266069,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 229436,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-18 00:00:07\",\n                \"created_at\": \"2023-12-04 09:52:03\",\n                \"updated_at\": \"2023-12-18 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231027,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-18\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:01:49\",\n            \"updated_at\": \"2023-12-18 10:01:49\",\n            \"approval\": {\n                \"id\": 272214,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 231027,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:08\",\n                \"created_at\": \"2023-12-18 10:01:49\",\n                \"updated_at\": \"2024-01-01 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226555,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Skivakantie\",\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-01\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:38:16\",\n            \"updated_at\": \"2023-11-07 08:38:16\",\n            \"approval\": {\n                \"id\": 255008,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 226555,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-21 00:00:05\",\n                \"created_at\": \"2023-11-07 08:38:16\",\n                \"updated_at\": \"2023-11-21 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231028,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-05\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:02:17\",\n            \"updated_at\": \"2023-12-18 10:02:17\",\n            \"approval\": {\n                \"id\": 272215,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 231028,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:09\",\n                \"created_at\": \"2023-12-18 10:02:17\",\n                \"updated_at\": \"2024-01-01 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 232281,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": \"Wintersport\",\n            \"start_date\": \"2024-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-02 11:57:58\",\n            \"updated_at\": \"2024-01-08 08:25:36\",\n            \"approval\": {\n                \"id\": 277252,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 232281,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-08 08:25:38\",\n                \"created_at\": \"2024-01-02 11:57:58\",\n                \"updated_at\": \"2024-01-08 08:25:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233565,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"88.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2024-01-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-09 09:54:16\",\n            \"updated_at\": \"2024-01-09 09:54:16\",\n            \"approval\": {\n                \"id\": 281330,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 233565,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-23 00:00:05\",\n                \"created_at\": \"2024-01-09 09:54:16\",\n                \"updated_at\": \"2024-01-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 236090,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-23 12:43:38\",\n            \"updated_at\": \"2024-01-23 12:43:38\",\n            \"approval\": {\n                \"id\": 289590,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 236090,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-01 08:57:14\",\n                \"created_at\": \"2024-01-23 12:43:38\",\n                \"updated_at\": \"2024-02-01 08:57:14\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"120.00\",\n            \"reason\": \"wispo\",\n            \"start_date\": \"2024-02-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 08:59:15\",\n            \"updated_at\": \"2024-02-02 08:59:15\",\n            \"approval\": {\n                \"id\": 296759,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 237722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-02 15:15:49\",\n                \"created_at\": \"2024-02-02 08:59:15\",\n                \"updated_at\": \"2024-02-02 15:15:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237724,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:01:04\",\n            \"updated_at\": \"2024-02-02 09:01:04\",\n            \"approval\": {\n                \"id\": 296761,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 237724,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:07\",\n                \"created_at\": \"2024-02-02 09:01:04\",\n                \"updated_at\": \"2024-02-16 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237723,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-21\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:00:32\",\n            \"updated_at\": \"2024-02-02 09:00:32\",\n            \"approval\": {\n                \"id\": 296760,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 237723,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:06\",\n                \"created_at\": \"2024-02-02 09:00:32\",\n                \"updated_at\": \"2024-02-16 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 239730,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-15\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-02-17\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-02-15 09:25:36\",\n            \"updated_at\": \"2024-02-15 09:25:36\",\n            \"approval\": {\n                \"id\": 305251,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 239730,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-29 00:00:05\",\n                \"created_at\": \"2024-02-15 09:25:36\",\n                \"updated_at\": \"2024-02-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 240718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2024-02-22 10:10:07\",\n            \"updated_at\": \"2024-02-22 10:10:07\",\n            \"approval\": {\n                \"id\": 309128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 240718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-06 09:16:56\",\n                \"created_at\": \"2024-02-22 10:10:07\",\n                \"updated_at\": \"2024-03-06 09:16:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 241964,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-04 08:12:31\",\n            \"updated_at\": \"2024-03-04 08:12:31\",\n            \"approval\": {\n                \"id\": 315469,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 241964,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-04 08:12:33\",\n                \"created_at\": \"2024-03-04 08:12:31\",\n                \"updated_at\": \"2024-03-04 08:12:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-03-07\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-11\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-03-07 09:27:23\",\n            \"updated_at\": \"2024-03-07 09:27:23\",\n            \"approval\": {\n                \"id\": 318692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-07 09:27:44\",\n                \"created_at\": \"2024-03-07 09:27:23\",\n                \"updated_at\": \"2024-03-07 09:27:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243183,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-15\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-11 14:43:29\",\n            \"updated_at\": \"2024-03-11 14:43:29\",\n            \"approval\": {\n                \"id\": 321174,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 243183,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-11 14:43:44\",\n                \"created_at\": \"2024-03-11 14:43:29\",\n                \"updated_at\": \"2024-03-11 14:43:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243676,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-13 16:11:43\",\n            \"updated_at\": \"2024-03-13 16:11:43\",\n            \"approval\": {\n                \"id\": 323295,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 243676,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 00:00:05\",\n                \"created_at\": \"2024-03-13 16:11:43\",\n                \"updated_at\": \"2024-03-27 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 244168,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-18 08:37:48\",\n            \"updated_at\": \"2024-03-18 08:37:48\",\n            \"approval\": {\n                \"id\": 325872,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 244168,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-18 08:37:54\",\n                \"created_at\": \"2024-03-18 08:37:48\",\n                \"updated_at\": \"2024-03-18 08:37:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-07 13:57:20\",\n            \"updated_at\": \"2024-03-07 13:57:20\",\n            \"approval\": {\n                \"id\": 318993,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242706,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:49:48\",\n                \"created_at\": \"2024-03-07 13:57:20\",\n                \"updated_at\": \"2024-03-25 12:49:48\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 245564,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-25 12:50:20\",\n            \"updated_at\": \"2024-03-25 12:50:20\",\n            \"approval\": {\n                \"id\": 330841,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 245564,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:50:28\",\n                \"created_at\": \"2024-03-25 12:50:20\",\n                \"updated_at\": \"2024-03-25 12:50:28\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245813,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-26\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:42:07\",\n            \"updated_at\": \"2024-03-26 13:42:07\",\n            \"approval\": {\n                \"id\": 331804,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245813,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-26 13:42:11\",\n                \"created_at\": \"2024-03-26 13:42:07\",\n                \"updated_at\": \"2024-03-26 13:42:11\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245883,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-27 08:25:04\",\n            \"updated_at\": \"2024-03-27 08:25:04\",\n            \"approval\": {\n                \"id\": 332177,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245883,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 08:25:08\",\n                \"created_at\": \"2024-03-27 08:25:04\",\n                \"updated_at\": \"2024-03-27 08:25:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245737,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Goede Vrijdag\",\n            \"start_date\": \"2024-03-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 09:43:02\",\n            \"updated_at\": \"2024-03-26 09:43:02\",\n            \"approval\": {\n                \"id\": 331561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 245737,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-09 00:00:05\",\n                \"created_at\": \"2024-03-26 09:43:02\",\n                \"updated_at\": \"2024-04-09 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245812,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:41:31\",\n            \"updated_at\": \"2024-04-02 15:27:51\",\n            \"approval\": {\n                \"id\": 331803,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 245812,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-02 15:28:22\",\n                \"created_at\": \"2024-03-26 13:41:31\",\n                \"updated_at\": \"2024-04-02 15:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247497,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-08\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-08 07:57:21\",\n            \"updated_at\": \"2024-04-08 07:57:21\",\n            \"approval\": {\n                \"id\": 340443,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247497,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-08 07:57:23\",\n                \"created_at\": \"2024-04-08 07:57:21\",\n                \"updated_at\": \"2024-04-08 07:57:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 248287,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-12 08:04:30\",\n            \"updated_at\": \"2024-04-12 08:04:30\",\n            \"approval\": {\n                \"id\": 344053,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 248287,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-12 08:04:33\",\n                \"created_at\": \"2024-04-12 08:04:30\",\n                \"updated_at\": \"2024-04-12 08:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247091,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-04 12:22:36\",\n            \"updated_at\": \"2024-04-15 07:50:53\",\n            \"approval\": {\n                \"id\": 338597,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247091,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-15 07:50:55\",\n                \"created_at\": \"2024-04-04 12:22:36\",\n                \"updated_at\": \"2024-04-15 07:50:55\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249894,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-22 12:43:23\",\n            \"updated_at\": \"2024-04-22 12:43:23\",\n            \"approval\": {\n                \"id\": 350377,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249894,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 00:00:05\",\n                \"created_at\": \"2024-04-22 12:43:23\",\n                \"updated_at\": \"2024-05-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249343,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:23:47\",\n            \"updated_at\": \"2024-04-18 11:23:47\",\n            \"approval\": {\n                \"id\": 348134,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249343,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-18 11:23:53\",\n                \"created_at\": \"2024-04-18 11:23:47\",\n                \"updated_at\": \"2024-04-18 11:23:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249345,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:24:09\",\n            \"updated_at\": \"2024-04-25 11:59:59\",\n            \"approval\": {\n                \"id\": 348136,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 249345,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-25 12:00:02\",\n                \"created_at\": \"2024-04-18 11:24:09\",\n                \"updated_at\": \"2024-04-25 12:00:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251414,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-05-01\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-05-06\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-05-01 11:14:35\",\n            \"updated_at\": \"2024-05-01 11:14:35\",\n            \"approval\": {\n                \"id\": 357345,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251414,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-02 13:17:15\",\n                \"created_at\": \"2024-05-01 11:14:35\",\n                \"updated_at\": \"2024-05-02 13:17:15\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251131,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:39:53\",\n            \"updated_at\": \"2024-04-30 07:39:53\",\n            \"approval\": {\n                \"id\": 355572,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 251131,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:39:56\",\n                \"created_at\": \"2024-04-30 07:39:53\",\n                \"updated_at\": \"2024-04-30 07:39:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251134,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-09\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-10\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:40:54\",\n            \"updated_at\": \"2024-04-30 07:40:54\",\n            \"approval\": {\n                \"id\": 355577,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251134,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:40:57\",\n                \"created_at\": \"2024-04-30 07:40:54\",\n                \"updated_at\": \"2024-04-30 07:40:57\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251136,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:42:03\",\n            \"updated_at\": \"2024-04-30 07:42:03\",\n            \"approval\": {\n                \"id\": 355583,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 251136,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:42:07\",\n                \"created_at\": \"2024-04-30 07:42:03\",\n                \"updated_at\": \"2024-04-30 07:42:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253612,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:08:35\",\n            \"updated_at\": \"2024-05-15 12:08:35\",\n            \"approval\": {\n                \"id\": 366223,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 253612,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-15 12:08:45\",\n                \"created_at\": \"2024-05-15 12:08:35\",\n                \"updated_at\": \"2024-05-15 12:08:45\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253613,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:09:38\",\n            \"updated_at\": \"2024-05-15 12:09:38\",\n            \"approval\": {\n                \"id\": 366225,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 253613,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-29 00:00:07\",\n                \"created_at\": \"2024-05-15 12:09:38\",\n                \"updated_at\": \"2024-05-29 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253819,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191307,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-16 11:21:06\",\n            \"updated_at\": \"2024-05-16 11:21:06\",\n            \"approval\": {\n                \"id\": 366921,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 253819,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 145942,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-16 11:21:08\",\n                \"created_at\": \"2024-05-16 11:21:06\",\n                \"updated_at\": \"2024-05-16 11:21:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 250639,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-21\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-26 08:50:58\",\n            \"updated_at\": \"2024-05-06 08:00:36\",\n            \"approval\": {\n                \"id\": 353507,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 250639,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 08:00:39\",\n                \"created_at\": \"2024-04-26 08:50:58\",\n                \"updated_at\": \"2024-05-06 08:00:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 255715,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-30\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-04\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-30 10:45:10\",\n            \"updated_at\": \"2024-05-30 10:45:10\",\n            \"approval\": {\n                \"id\": 375237,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 255715,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 09:00:41\",\n                \"created_at\": \"2024-05-30 10:45:10\",\n                \"updated_at\": \"2024-06-10 09:00:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 256926,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-07 14:21:28\",\n            \"updated_at\": \"2024-06-07 14:21:28\",\n            \"approval\": {\n                \"id\": 382306,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 256926,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-07 14:21:32\",\n                \"created_at\": \"2024-06-07 14:21:28\",\n                \"updated_at\": \"2024-06-07 14:21:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257084,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-14\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:34:38\",\n            \"updated_at\": \"2024-06-10 07:34:48\",\n            \"approval\": {\n                \"id\": 383048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257084,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:34:59\",\n                \"created_at\": \"2024-06-10 07:34:38\",\n                \"updated_at\": \"2024-06-10 07:34:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257474,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-11 13:23:11\",\n            \"updated_at\": \"2024-06-11 13:23:11\",\n            \"approval\": {\n                \"id\": 384784,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257474,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-19 08:19:42\",\n                \"created_at\": \"2024-06-11 13:23:11\",\n                \"updated_at\": \"2024-06-19 08:19:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258138,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"midweekje met de vrouw\",\n            \"start_date\": \"2024-06-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-17 09:17:50\",\n            \"updated_at\": \"2024-06-17 09:17:50\",\n            \"approval\": {\n                \"id\": 388429,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 258138,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-17 09:18:25\",\n                \"created_at\": \"2024-06-17 09:17:50\",\n                \"updated_at\": \"2024-06-17 09:18:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257086,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:35:23\",\n            \"updated_at\": \"2024-06-10 07:35:23\",\n            \"approval\": {\n                \"id\": 383050,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 257086,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:35:26\",\n                \"created_at\": \"2024-06-10 07:35:23\",\n                \"updated_at\": \"2024-06-10 07:35:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259520,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:11\",\n            \"updated_at\": \"2024-06-25 07:34:11\",\n            \"approval\": {\n                \"id\": 394199,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259520,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-25 07:34:16\",\n                \"created_at\": \"2024-06-25 07:34:11\",\n                \"updated_at\": \"2024-06-25 07:34:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259524,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:35\",\n            \"updated_at\": \"2024-06-25 07:34:35\",\n            \"approval\": {\n                \"id\": 394203,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 259524,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 12:05:40\",\n                \"created_at\": \"2024-06-25 07:34:35\",\n                \"updated_at\": \"2024-07-05 12:05:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 259373,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"12.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-24 13:39:40\",\n            \"updated_at\": \"2024-07-02 09:26:16\",\n            \"approval\": {\n                \"id\": 393668,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 259373,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-08 00:00:05\",\n                \"created_at\": \"2024-06-24 13:39:40\",\n                \"updated_at\": \"2024-07-08 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259685,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 11:27:15\",\n            \"updated_at\": \"2024-07-02 09:25:42\",\n            \"approval\": {\n                \"id\": 394542,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259685,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 00:00:08\",\n                \"created_at\": \"2024-06-25 11:27:15\",\n                \"updated_at\": \"2024-07-09 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-31\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:50:07\",\n            \"updated_at\": \"2024-07-09 11:50:07\",\n            \"approval\": {\n                \"id\": 405825,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 262245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:50:10\",\n                \"created_at\": \"2024-07-09 11:50:07\",\n                \"updated_at\": \"2024-07-09 11:50:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262244,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:49:21\",\n            \"updated_at\": \"2024-07-09 11:49:21\",\n            \"approval\": {\n                \"id\": 405824,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 262244,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 12:28:17\",\n                \"created_at\": \"2024-07-09 11:49:21\",\n                \"updated_at\": \"2024-07-09 12:28:17\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 261664,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-05 10:35:54\",\n            \"updated_at\": \"2024-07-05 10:35:54\",\n            \"approval\": {\n                \"id\": 403271,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 261664,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 10:36:03\",\n                \"created_at\": \"2024-07-05 10:35:54\",\n                \"updated_at\": \"2024-07-05 10:36:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258953,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191305,\n            \"hours\": \"72.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-21 09:37:28\",\n            \"updated_at\": \"2024-06-21 09:37:28\",\n            \"approval\": {\n                \"id\": 392094,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 258953,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 07:33:18\",\n                \"created_at\": \"2024-06-21 09:37:28\",\n                \"updated_at\": \"2024-07-24 07:33:18\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262541,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-17\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-11 10:06:32\",\n            \"updated_at\": \"2024-07-11 10:06:32\",\n            \"approval\": {\n                \"id\": 407080,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262541,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-25 00:00:05\",\n                \"created_at\": \"2024-07-11 10:06:32\",\n                \"updated_at\": \"2024-07-25 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262246,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2024-07-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:51:35\",\n            \"updated_at\": \"2024-07-09 11:51:35\",\n            \"approval\": {\n                \"id\": 405826,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262246,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:51:40\",\n                \"created_at\": \"2024-07-09 11:51:35\",\n                \"updated_at\": \"2024-07-09 11:51:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 265119,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Huwelijk\",\n            \"start_date\": \"2024-07-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-29 13:56:24\",\n            \"updated_at\": \"2024-07-29 13:56:24\",\n            \"approval\": {\n                \"id\": 417658,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 265119,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 00:00:05\",\n                \"created_at\": \"2024-07-29 13:56:24\",\n                \"updated_at\": \"2024-08-12 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 264647,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-26 07:35:14\",\n            \"updated_at\": \"2024-08-05 10:59:13\",\n            \"approval\": {\n                \"id\": 416162,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 264647,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 10:59:16\",\n                \"created_at\": \"2024-07-26 07:35:14\",\n                \"updated_at\": \"2024-08-05 10:59:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 266319,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-05 10:59:54\",\n            \"updated_at\": \"2024-08-05 10:59:54\",\n            \"approval\": {\n                \"id\": 423012,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 266319,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 11:01:01\",\n                \"created_at\": \"2024-08-05 10:59:54\",\n                \"updated_at\": \"2024-08-05 11:01:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267428,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:32:21\",\n            \"updated_at\": \"2024-08-12 10:32:21\",\n            \"approval\": {\n                \"id\": 426493,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 267428,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-14 09:53:53\",\n                \"created_at\": \"2024-08-12 10:32:21\",\n                \"updated_at\": \"2024-08-14 09:53:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267427,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:31:56\",\n            \"updated_at\": \"2024-08-12 10:31:56\",\n            \"approval\": {\n                \"id\": 426492,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 267427,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 10:32:05\",\n                \"created_at\": \"2024-08-12 10:31:56\",\n                \"updated_at\": \"2024-08-12 10:32:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268249,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-19 11:17:46\",\n            \"updated_at\": \"2024-08-19 11:17:46\",\n            \"approval\": {\n                \"id\": 429949,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 268249,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-02 00:00:07\",\n                \"created_at\": \"2024-08-19 11:17:46\",\n                \"updated_at\": \"2024-09-02 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 263904,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-19 07:35:04\",\n            \"updated_at\": \"2024-07-19 07:35:04\",\n            \"approval\": {\n                \"id\": 412359,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 263904,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 08:16:32\",\n                \"created_at\": \"2024-07-19 07:35:04\",\n                \"updated_at\": \"2024-07-24 08:16:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 269483,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-28\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-28\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-27 11:50:24\",\n            \"updated_at\": \"2024-08-27 11:50:24\",\n            \"approval\": {\n                \"id\": 435303,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 269483,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-10 00:00:09\",\n                \"created_at\": \"2024-08-27 11:50:24\",\n                \"updated_at\": \"2024-09-10 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"52.00\",\n            \"reason\": \"Weekje Spanje\",\n            \"start_date\": \"2024-08-31\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-08-22 13:11:35\",\n            \"updated_at\": \"2024-09-01 16:15:05\",\n            \"approval\": {\n                \"id\": 432189,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 268855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-01 16:15:10\",\n                \"created_at\": \"2024-08-22 13:11:35\",\n                \"updated_at\": \"2024-09-01 16:15:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270622,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"4.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-04 09:56:20\",\n            \"updated_at\": \"2024-09-04 09:56:20\",\n            \"approval\": {\n                \"id\": 444256,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270622,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:29\",\n                \"created_at\": \"2024-09-04 09:56:20\",\n                \"updated_at\": \"2024-09-11 13:10:29\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270768,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-05 08:30:19\",\n            \"updated_at\": \"2024-09-05 08:30:19\",\n            \"approval\": {\n                \"id\": 445287,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270768,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:59\",\n                \"created_at\": \"2024-09-05 08:30:19\",\n                \"updated_at\": \"2024-09-11 13:10:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 271887,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-12 12:26:40\",\n            \"updated_at\": \"2024-09-12 12:26:40\",\n            \"approval\": {\n                \"id\": 452856,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 271887,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-12 12:27:20\",\n                \"created_at\": \"2024-09-12 12:26:40\",\n                \"updated_at\": \"2024-09-12 12:27:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272021,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"0.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-18\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-13 09:16:07\",\n            \"updated_at\": \"2024-09-13 09:16:07\",\n            \"approval\": {\n                \"id\": 453813,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 272021,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-13 11:49:42\",\n                \"created_at\": \"2024-09-13 09:16:07\",\n                \"updated_at\": \"2024-09-13 11:49:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272935,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-19 07:50:50\",\n            \"updated_at\": \"2024-09-19 07:50:50\",\n            \"approval\": {\n                \"id\": 459293,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 272935,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-19 07:50:54\",\n                \"created_at\": \"2024-09-19 07:50:50\",\n                \"updated_at\": \"2024-09-19 07:50:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273831,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"13.02\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-25\",\n            \"start_time\": \"09:14\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"10:15\",\n            \"created_at\": \"2024-09-25 08:19:43\",\n            \"updated_at\": \"2024-09-25 08:19:43\",\n            \"approval\": {\n                \"id\": 464718,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 273831,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-25 08:19:43\",\n                \"created_at\": \"2024-09-25 08:19:43\",\n                \"updated_at\": \"2024-09-25 08:19:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 274057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"28.00\",\n            \"reason\": \"weekend weg\",\n            \"start_date\": \"2024-09-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-03\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-26 09:43:50\",\n            \"updated_at\": \"2024-09-26 09:43:50\",\n            \"approval\": {\n                \"id\": 466280,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 274057,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-26 12:04:33\",\n                \"created_at\": \"2024-09-26 09:43:50\",\n                \"updated_at\": \"2024-09-26 12:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273719,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-27\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-24 12:14:25\",\n            \"updated_at\": \"2024-09-24 12:14:25\",\n            \"approval\": {\n                \"id\": 463911,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 273719,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-24 12:14:25\",\n                \"created_at\": \"2024-09-24 12:14:25\",\n                \"updated_at\": \"2024-09-24 12:14:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 275695,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"lang weekend weg\",\n            \"start_date\": \"2024-10-10\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-15\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-07 09:22:20\",\n            \"updated_at\": \"2024-10-08 07:41:39\",\n            \"approval\": {\n                \"id\": 478491,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 275695,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:41:44\",\n                \"created_at\": \"2024-10-07 09:22:20\",\n                \"updated_at\": \"2024-10-08 07:41:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 275876,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191304,\n            \"hours\": \"384.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-14\",\n            \"start_time\": null,\n            \"end_date\": \"2025-02-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-10-08 07:43:46\",\n            \"updated_at\": \"2024-10-08 07:43:46\",\n            \"approval\": {\n                \"id\": 479809,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 275876,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:44:16\",\n                \"created_at\": \"2024-10-08 07:43:46\",\n                \"updated_at\": \"2024-10-08 07:44:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 274862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"19.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-23\",\n            \"start_time\": \"14:00\",\n            \"end_date\": \"2024-10-27\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-01 12:48:35\",\n            \"updated_at\": \"2024-10-21 08:21:27\",\n            \"approval\": {\n                \"id\": 472584,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 274862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-21 08:21:38\",\n                \"created_at\": \"2024-10-01 12:48:35\",\n                \"updated_at\": \"2024-10-21 08:21:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 282435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"28.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-12-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-12-02 15:12:56\",\n            \"updated_at\": \"2024-12-02 15:12:56\",\n            \"approval\": {\n                \"id\": 550844,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 282435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-12-02 15:12:56\",\n                \"created_at\": \"2024-12-02 15:12:56\",\n                \"updated_at\": \"2024-12-02 15:12:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 282436,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"28.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-12-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-12-02 15:14:11\",\n            \"updated_at\": \"2024-12-02 15:14:11\",\n            \"approval\": {\n                \"id\": 550845,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 282436,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-12-02 15:14:11\",\n                \"created_at\": \"2024-12-02 15:14:11\",\n                \"updated_at\": \"2024-12-02 15:14:11\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"e735c1c4-a3f0-4c44-82f6-99667cad979d"},{"name":"Create leave request","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"b501bed2-dd0e-4c4e-aaff-2dde045f6785"}}],"id":"d8942f8a-cb88-4295-adc5-4ce92184b908","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n        \"employee_id\": 138745,\n        \"leave_type_id\": 191301,\n        \"hours\": \"28.00\",\n        \"reason\": null,\n        \"start_date\": \"2024-12-01\",\n        \"start_time\": null,\n        \"end_date\": \"2024-12-05\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-requests","description":"<p>Creates a new leave request</p>\n","urlObject":{"path":["leave-requests"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"f3ce92a2-7439-43d0-ba0b-ef0bca4dd648","name":"leave request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/leave-requests?sort=start_date&employee_id=&leave_type_id=&active_in_period= &approval_status=","host":["https://api.buddee.nl"],"path":["leave-requests"],"query":[{"key":"sort","value":"start_date","type":"text"},{"key":"employee_id","value":"","description":"Filters by leave_requests.employee_id","type":"text"},{"key":"leave_type_id","value":"","description":"Filters by leave_requests.leave_type_id","type":"text"},{"key":"active_in_period","value":" ","type":"text"},{"key":"approval_status","value":"","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:42:24 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 144,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 196423,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-19\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-05 15:00:31\",\n            \"updated_at\": \"2021-06-17 12:29:01\",\n            \"approval\": {\n                \"id\": 119684,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196423,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week !\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-06-17 12:29:01\",\n                \"created_at\": \"2021-05-05 15:00:31\",\n                \"updated_at\": \"2021-06-17 12:29:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196393,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-29\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-30\",\n            \"end_time\": null,\n            \"created_at\": \"2021-04-29 08:54:47\",\n            \"updated_at\": \"2021-11-08 07:54:35\",\n            \"approval\": {\n                \"id\": 119654,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196393,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:35\",\n                \"created_at\": \"2021-04-29 08:54:47\",\n                \"updated_at\": \"2021-11-08 07:54:35\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-05-06\",\n            \"start_time\": null,\n            \"end_date\": \"2021-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-06 13:18:16\",\n            \"updated_at\": \"2021-11-08 07:54:26\",\n            \"approval\": {\n                \"id\": 119694,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, teveel mensen met vakantie\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:26\",\n                \"created_at\": \"2021-05-06 13:18:16\",\n                \"updated_at\": \"2021-11-08 07:54:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197276,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"15.50\",\n            \"reason\": null,\n            \"start_date\": \"2021-09-29\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2021-09-30\",\n            \"end_time\": \"16:30\",\n            \"created_at\": \"2021-09-29 10:45:14\",\n            \"updated_at\": \"2021-11-08 07:54:52\",\n            \"approval\": {\n                \"id\": 120506,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 197276,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:52\",\n                \"created_at\": \"2021-09-29 10:45:14\",\n                \"updated_at\": \"2021-11-08 07:54:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 198358,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg\",\n            \"start_date\": \"2022-02-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-02-12\",\n            \"end_time\": null,\n            \"created_at\": \"2022-02-10 10:38:19\",\n            \"updated_at\": \"2022-02-10 10:38:19\",\n            \"approval\": {\n                \"id\": 131288,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198358,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-02-10 10:38:40\",\n                \"created_at\": \"2022-02-10 10:38:19\",\n                \"updated_at\": \"2022-02-10 10:38:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198609,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Midweekje vakantie\",\n            \"start_date\": \"2022-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-01 11:24:16\",\n            \"updated_at\": \"2022-03-01 11:24:16\",\n            \"approval\": {\n                \"id\": 132354,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198609,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-01 11:24:33\",\n                \"created_at\": \"2022-03-01 11:24:16\",\n                \"updated_at\": \"2022-03-01 11:24:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-03-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-09 11:01:21\",\n            \"updated_at\": \"2022-03-09 11:01:21\",\n            \"approval\": {\n                \"id\": 132675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198705,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-23 00:00:05\",\n                \"created_at\": \"2022-03-09 11:01:21\",\n                \"updated_at\": \"2022-03-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 199761,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"6.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-05-20\",\n            \"start_time\": \"11:00\",\n            \"end_date\": \"2022-05-21\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2022-05-20 10:20:39\",\n            \"updated_at\": \"2022-05-20 10:20:39\",\n            \"approval\": {\n                \"id\": 137599,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 199761,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-05-20 10:20:43\",\n                \"created_at\": \"2022-05-20 10:20:39\",\n                \"updated_at\": \"2022-05-20 10:20:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200004,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-06-08\",\n            \"start_time\": null,\n            \"end_date\": \"2022-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-06-08 09:17:58\",\n            \"updated_at\": \"2022-06-08 09:17:58\",\n            \"approval\": {\n                \"id\": 139024,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200004,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-06-22 00:00:04\",\n                \"created_at\": \"2022-06-08 09:17:58\",\n                \"updated_at\": \"2022-06-22 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200468,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-06\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-05 11:13:08\",\n            \"updated_at\": \"2022-07-05 11:13:08\",\n            \"approval\": {\n                \"id\": 141383,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200468,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-19 00:00:04\",\n                \"created_at\": \"2022-07-05 11:13:08\",\n                \"updated_at\": \"2022-07-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200830,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-20 20:59:20\",\n            \"updated_at\": \"2022-07-20 20:59:20\",\n            \"approval\": {\n                \"id\": 142560,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200830,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-20 20:59:24\",\n                \"created_at\": \"2022-07-20 20:59:20\",\n                \"updated_at\": \"2022-07-20 20:59:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201545,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-01\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:23:19\",\n            \"updated_at\": \"2022-08-30 11:23:19\",\n            \"approval\": {\n                \"id\": 145567,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201545,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:23:19\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-08-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-10 12:48:54\",\n            \"updated_at\": \"2022-08-10 12:48:54\",\n            \"approval\": {\n                \"id\": 144205,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-08-16 08:39:24\",\n                \"created_at\": \"2022-08-10 12:48:54\",\n                \"updated_at\": \"2022-08-16 08:39:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201540,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 08:06:47\",\n            \"updated_at\": \"2022-08-30 08:06:47\",\n            \"approval\": {\n                \"id\": 145544,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201540,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:16:39\",\n                \"created_at\": \"2022-08-30 08:06:47\",\n                \"updated_at\": \"2022-09-02 08:16:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201543,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:17:13\",\n            \"updated_at\": \"2022-08-30 11:17:13\",\n            \"approval\": {\n                \"id\": 145565,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201543,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:04\",\n                \"created_at\": \"2022-08-30 11:17:13\",\n                \"updated_at\": \"2022-09-13 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201544,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:21:04\",\n            \"updated_at\": \"2022-08-30 11:21:04\",\n            \"approval\": {\n                \"id\": 145566,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201544,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:21:04\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201573,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-02\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-02\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-31 08:06:15\",\n            \"updated_at\": \"2022-08-31 08:06:15\",\n            \"approval\": {\n                \"id\": 145712,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201573,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-14 00:00:04\",\n                \"created_at\": \"2022-08-31 08:06:15\",\n                \"updated_at\": \"2022-09-14 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-02 08:17:33\",\n            \"updated_at\": \"2022-09-02 08:17:33\",\n            \"approval\": {\n                \"id\": 146110,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:17:42\",\n                \"created_at\": \"2022-09-02 08:17:33\",\n                \"updated_at\": \"2022-09-02 08:17:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201738,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-07\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-06 11:14:48\",\n            \"updated_at\": \"2022-09-06 11:14:48\",\n            \"approval\": {\n                \"id\": 146619,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201738,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-20 00:00:05\",\n                \"created_at\": \"2022-09-06 11:14:48\",\n                \"updated_at\": \"2022-09-20 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201677,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-09-09\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2022-09-12\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2022-09-05 08:44:06\",\n            \"updated_at\": \"2022-09-05 08:44:06\",\n            \"approval\": {\n                \"id\": 146480,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201677,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-19 00:00:04\",\n                \"created_at\": \"2022-09-05 08:44:06\",\n                \"updated_at\": \"2022-09-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201790,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-12\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-16\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-08 09:52:59\",\n            \"updated_at\": \"2022-09-08 09:52:59\",\n            \"approval\": {\n                \"id\": 146839,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201790,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-17 11:01:23\",\n                \"created_at\": \"2022-09-08 09:52:59\",\n                \"updated_at\": \"2022-10-17 11:01:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202156,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-29 07:46:38\",\n            \"updated_at\": \"2022-09-29 07:46:38\",\n            \"approval\": {\n                \"id\": 149079,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202156,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-13 00:00:03\",\n                \"created_at\": \"2022-09-29 07:46:38\",\n                \"updated_at\": \"2022-10-13 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202655,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-19 08:56:47\",\n            \"updated_at\": \"2022-10-19 08:56:47\",\n            \"approval\": {\n                \"id\": 151650,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202655,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:02:58\",\n                \"created_at\": \"2022-10-19 08:56:47\",\n                \"updated_at\": \"2022-10-26 09:02:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202635,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-18 13:43:51\",\n            \"updated_at\": \"2022-10-18 13:43:51\",\n            \"approval\": {\n                \"id\": 151578,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202635,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:40\",\n                \"created_at\": \"2022-10-18 13:43:51\",\n                \"updated_at\": \"2022-10-26 09:03:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-20 11:14:13\",\n            \"updated_at\": \"2022-10-20 11:14:13\",\n            \"approval\": {\n                \"id\": 151829,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:04\",\n                \"created_at\": \"2022-10-20 11:14:13\",\n                \"updated_at\": \"2022-10-26 09:03:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202863,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-27\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 08:29:42\",\n            \"updated_at\": \"2022-10-26 08:29:42\",\n            \"approval\": {\n                \"id\": 152437,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202863,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:12\",\n                \"created_at\": \"2022-10-26 08:29:42\",\n                \"updated_at\": \"2022-10-26 09:03:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202896,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-04\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-27 09:45:36\",\n            \"updated_at\": \"2022-10-27 09:45:36\",\n            \"approval\": {\n                \"id\": 152561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202896,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-10 00:00:04\",\n                \"created_at\": \"2022-10-27 09:45:36\",\n                \"updated_at\": \"2022-11-10 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203875,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"176.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 13:43:41\",\n            \"updated_at\": \"2022-11-24 13:43:41\",\n            \"approval\": {\n                \"id\": 156663,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203875,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Mag niet\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 13:44:02\",\n                \"created_at\": \"2022-11-24 13:43:41\",\n                \"updated_at\": \"2022-11-24 13:44:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-09 09:09:37\",\n            \"updated_at\": \"2022-11-09 09:09:37\",\n            \"approval\": {\n                \"id\": 154517,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 14:37:58\",\n                \"created_at\": \"2022-11-09 09:09:37\",\n                \"updated_at\": \"2022-11-09 14:37:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203869,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-21\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 12:40:05\",\n            \"updated_at\": \"2022-11-24 12:40:05\",\n            \"approval\": {\n                \"id\": 156651,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203869,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 12:40:38\",\n                \"created_at\": \"2022-11-24 12:40:05\",\n                \"updated_at\": \"2022-11-24 12:40:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203982,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-28\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:50:08\",\n            \"updated_at\": \"2022-11-28 13:50:08\",\n            \"approval\": {\n                \"id\": 157133,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203982,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-01 10:37:47\",\n                \"created_at\": \"2022-11-28 13:50:08\",\n                \"updated_at\": \"2022-12-01 10:37:47\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203637,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"208.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-17 13:38:31\",\n            \"updated_at\": \"2022-11-17 13:38:31\",\n            \"approval\": {\n                \"id\": 155624,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203637,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-17 13:39:02\",\n                \"created_at\": \"2022-11-17 13:38:31\",\n                \"updated_at\": \"2022-11-17 13:39:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203915,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-25 13:29:01\",\n            \"updated_at\": \"2022-11-25 13:29:01\",\n            \"approval\": {\n                \"id\": 156812,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203915,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"test\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-25 13:29:41\",\n                \"created_at\": \"2022-11-25 13:29:01\",\n                \"updated_at\": \"2022-11-25 13:29:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 09:25:09\",\n            \"updated_at\": \"2022-12-20 09:25:09\",\n            \"approval\": {\n                \"id\": 160424,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:04\",\n                \"created_at\": \"2022-12-20 09:25:09\",\n                \"updated_at\": \"2023-01-03 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204741,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Dagje vrij\",\n            \"start_date\": \"2022-12-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:07:53\",\n            \"updated_at\": \"2022-12-20 13:07:53\",\n            \"approval\": {\n                \"id\": 160494,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204741,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:07:53\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203981,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:36:08\",\n            \"updated_at\": \"2022-11-28 13:36:08\",\n            \"approval\": {\n                \"id\": 157128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203981,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-28 13:36:58\",\n                \"created_at\": \"2022-11-28 13:36:08\",\n                \"updated_at\": \"2022-11-28 13:36:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204488,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-12 13:46:47\",\n            \"updated_at\": \"2022-12-12 13:46:47\",\n            \"approval\": {\n                \"id\": 159370,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204488,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-26 00:00:04\",\n                \"created_at\": \"2022-12-12 13:46:47\",\n                \"updated_at\": \"2022-12-26 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204742,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"vakantie\",\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:17:40\",\n            \"updated_at\": \"2022-12-20 13:17:40\",\n            \"approval\": {\n                \"id\": 160495,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204742,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-20 13:18:31\",\n                \"created_at\": \"2022-12-20 13:17:40\",\n                \"updated_at\": \"2022-12-20 13:18:31\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204823,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-22 10:11:11\",\n            \"updated_at\": \"2022-12-22 10:11:11\",\n            \"approval\": {\n                \"id\": 160843,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204823,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-22 10:11:56\",\n                \"created_at\": \"2022-12-22 10:11:11\",\n                \"updated_at\": \"2022-12-22 10:11:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204968,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-29 08:35:46\",\n            \"updated_at\": \"2022-12-29 08:35:46\",\n            \"approval\": {\n                \"id\": 161549,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204968,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, want dan zijn er al 2 collega's weg\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-10 14:45:07\",\n                \"created_at\": \"2022-12-29 08:35:46\",\n                \"updated_at\": \"2023-01-10 14:45:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204802,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-07\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-21 13:09:28\",\n            \"updated_at\": \"2022-12-21 13:09:28\",\n            \"approval\": {\n                \"id\": 160675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204802,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-21 13:09:38\",\n                \"created_at\": \"2022-12-21 13:09:28\",\n                \"updated_at\": \"2022-12-21 13:09:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204743,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:20:23\",\n            \"updated_at\": \"2022-12-20 13:20:23\",\n            \"approval\": {\n                \"id\": 160496,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204743,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:20:23\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 205663,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-13 14:04:01\",\n            \"updated_at\": \"2023-01-13 14:04:01\",\n            \"approval\": {\n                \"id\": 163964,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205663,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-13 14:04:25\",\n                \"created_at\": \"2023-01-13 14:04:01\",\n                \"updated_at\": \"2023-01-13 14:04:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205506,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-27\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-11 11:11:05\",\n            \"updated_at\": \"2023-01-11 11:11:05\",\n            \"approval\": {\n                \"id\": 163528,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205506,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-11 11:11:49\",\n                \"created_at\": \"2023-01-11 11:11:05\",\n                \"updated_at\": \"2023-01-11 11:11:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-19 12:14:43\",\n            \"updated_at\": \"2023-01-19 12:14:43\",\n            \"approval\": {\n                \"id\": 164756,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-19 12:15:19\",\n                \"created_at\": \"2023-01-19 12:14:43\",\n                \"updated_at\": \"2023-01-19 12:15:19\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 206245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"104.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-30 12:44:46\",\n            \"updated_at\": \"2023-01-30 12:44:46\",\n            \"approval\": {\n                \"id\": 166418,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-30 12:45:12\",\n                \"created_at\": \"2023-01-30 12:44:46\",\n                \"updated_at\": \"2023-01-30 12:45:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202867,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:04:02\",\n            \"updated_at\": \"2022-10-26 09:04:02\",\n            \"approval\": {\n                \"id\": 152456,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202867,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:04:04\",\n                \"created_at\": \"2022-10-26 09:04:02\",\n                \"updated_at\": \"2022-10-26 09:04:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 206942,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-20\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-02-13 13:09:59\",\n            \"updated_at\": \"2023-02-13 13:09:59\",\n            \"approval\": {\n                \"id\": 169385,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206942,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-02-27 00:00:04\",\n                \"created_at\": \"2023-02-13 13:09:59\",\n                \"updated_at\": \"2023-02-27 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204539,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-13 12:39:47\",\n            \"updated_at\": \"2022-12-13 12:39:47\",\n            \"approval\": {\n                \"id\": 159552,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204539,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-13 12:40:32\",\n                \"created_at\": \"2022-12-13 12:39:47\",\n                \"updated_at\": \"2022-12-13 12:40:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 208038,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-06\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-09 10:11:34\",\n            \"updated_at\": \"2023-03-09 10:11:34\",\n            \"approval\": {\n                \"id\": 174513,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208038,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-09 10:12:41\",\n                \"created_at\": \"2023-03-09 10:11:34\",\n                \"updated_at\": \"2023-03-09 10:12:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 208946,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-04-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-31 12:09:32\",\n            \"updated_at\": \"2023-03-31 12:09:32\",\n            \"approval\": {\n                \"id\": 179569,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208946,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-31 12:09:54\",\n                \"created_at\": \"2023-03-31 12:09:32\",\n                \"updated_at\": \"2023-03-31 12:09:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202868,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-05-07\",\n            \"start_time\": null,\n            \"end_date\": \"2023-05-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:09:48\",\n            \"updated_at\": \"2022-10-26 09:09:48\",\n            \"approval\": {\n                \"id\": 152457,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202868,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 00:00:03\",\n                \"created_at\": \"2022-10-26 09:09:48\",\n                \"updated_at\": \"2022-11-09 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 212983,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-05\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-02 11:44:10\",\n            \"updated_at\": \"2023-06-02 11:44:10\",\n            \"approval\": {\n                \"id\": 198178,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 212983,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-16 00:00:04\",\n                \"created_at\": \"2023-06-02 11:44:10\",\n                \"updated_at\": \"2023-06-16 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 214487,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-19 10:50:57\",\n            \"updated_at\": \"2023-06-19 10:50:57\",\n            \"approval\": {\n                \"id\": 203643,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 214487,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-27 10:21:54\",\n                \"created_at\": \"2023-06-19 10:50:57\",\n                \"updated_at\": \"2023-06-27 10:21:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216044,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-10 07:31:44\",\n            \"updated_at\": \"2023-07-10 07:31:44\",\n            \"approval\": {\n                \"id\": 212048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216044,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-24 00:00:04\",\n                \"created_at\": \"2023-07-10 07:31:44\",\n                \"updated_at\": \"2023-07-24 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216941,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-21\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-21 12:31:36\",\n            \"updated_at\": \"2023-07-21 12:31:36\",\n            \"approval\": {\n                \"id\": 215869,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216941,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-08-04 00:00:04\",\n                \"created_at\": \"2023-07-21 12:31:36\",\n                \"updated_at\": \"2023-08-04 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216305,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-24\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-12 14:11:34\",\n            \"updated_at\": \"2023-07-12 14:11:34\",\n            \"approval\": {\n                \"id\": 213215,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216305,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-12 14:11:38\",\n                \"created_at\": \"2023-07-12 14:11:34\",\n                \"updated_at\": \"2023-07-12 14:11:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 219061,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 193188,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-08-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-08-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-08-25 08:41:46\",\n            \"updated_at\": \"2023-08-25 08:41:46\",\n            \"approval\": {\n                \"id\": 226086,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 219061,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-01 11:11:59\",\n                \"created_at\": \"2023-08-25 08:41:46\",\n                \"updated_at\": \"2023-11-01 11:11:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233018,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2023-09-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-17\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-08 08:24:56\",\n            \"updated_at\": \"2024-01-19 14:28:17\",\n            \"approval\": {\n                \"id\": 280187,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 233018,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-19 14:28:22\",\n                \"created_at\": \"2024-01-08 08:24:56\",\n                \"updated_at\": \"2024-01-19 14:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-15\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-15\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-15 12:58:37\",\n            \"updated_at\": \"2023-09-15 12:58:37\",\n            \"approval\": {\n                \"id\": 234343,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-29 00:00:05\",\n                \"created_at\": \"2023-09-15 12:58:37\",\n                \"updated_at\": \"2023-09-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-18 10:12:41\",\n            \"updated_at\": \"2023-09-18 10:12:41\",\n            \"approval\": {\n                \"id\": 234797,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-18 10:13:10\",\n                \"created_at\": \"2023-09-18 10:12:41\",\n                \"updated_at\": \"2023-09-18 10:13:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 221739,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-22\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-22 09:10:24\",\n            \"updated_at\": \"2023-09-22 09:10:24\",\n            \"approval\": {\n                \"id\": 236692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221739,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-06 00:00:05\",\n                \"created_at\": \"2023-09-22 09:10:24\",\n                \"updated_at\": \"2023-10-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221853,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-25 09:48:04\",\n            \"updated_at\": \"2023-09-25 09:48:04\",\n            \"approval\": {\n                \"id\": 237220,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221853,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-09 00:00:06\",\n                \"created_at\": \"2023-09-25 09:48:04\",\n                \"updated_at\": \"2023-10-09 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 222389,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-29\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-29 11:21:19\",\n            \"updated_at\": \"2023-09-29 11:21:19\",\n            \"approval\": {\n                \"id\": 239239,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 222389,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-13 00:00:05\",\n                \"created_at\": \"2023-09-29 11:21:19\",\n                \"updated_at\": \"2023-10-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 224376,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-10-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-16 09:38:16\",\n            \"updated_at\": \"2023-10-16 09:38:16\",\n            \"approval\": {\n                \"id\": 246156,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 224376,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-30 00:00:05\",\n                \"created_at\": \"2023-10-16 09:38:16\",\n                \"updated_at\": \"2023-10-30 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 225855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-31 10:00:46\",\n            \"updated_at\": \"2023-10-31 10:00:46\",\n            \"approval\": {\n                \"id\": 251894,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 225855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-31 10:00:49\",\n                \"created_at\": \"2023-10-31 10:00:46\",\n                \"updated_at\": \"2023-10-31 10:00:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226557,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg met gezin\",\n            \"start_date\": \"2023-11-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-13\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:40:00\",\n            \"updated_at\": \"2023-11-07 08:49:31\",\n            \"approval\": {\n                \"id\": 255010,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 226557,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-07 09:00:22\",\n                \"created_at\": \"2023-11-07 08:40:00\",\n                \"updated_at\": \"2023-11-07 09:00:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-14 11:35:15\",\n            \"updated_at\": \"2023-11-14 11:35:15\",\n            \"approval\": {\n                \"id\": 257858,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 227435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-14 11:35:20\",\n                \"created_at\": \"2023-11-14 11:35:15\",\n                \"updated_at\": \"2023-11-14 11:35:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227658,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-16 10:16:43\",\n            \"updated_at\": \"2023-11-16 10:16:43\",\n            \"approval\": {\n                \"id\": 258821,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 227658,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-30 00:00:04\",\n                \"created_at\": \"2023-11-16 10:16:43\",\n                \"updated_at\": \"2023-11-30 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 228261,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-22 09:42:12\",\n            \"updated_at\": \"2023-11-22 09:42:12\",\n            \"approval\": {\n                \"id\": 260903,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 228261,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-06 00:00:05\",\n                \"created_at\": \"2023-11-22 09:42:12\",\n                \"updated_at\": \"2023-12-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227550,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"29.42\",\n            \"reason\": \"Ski vakantie\",\n            \"start_date\": \"2023-11-30\",\n            \"start_time\": \"12:35\",\n            \"end_date\": \"2023-12-07\",\n            \"end_time\": \"10:00\",\n            \"created_at\": \"2023-11-15 10:37:10\",\n            \"updated_at\": \"2023-11-15 10:37:10\",\n            \"approval\": {\n                \"id\": 258393,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 227550,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Graag andere week ivm vakantie rest van het team\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-15 10:38:52\",\n                \"created_at\": \"2023-11-15 10:37:10\",\n                \"updated_at\": \"2023-11-15 10:38:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 229436,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-08\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2023-12-12\",\n            \"end_time\": \"14:00\",\n            \"created_at\": \"2023-12-04 09:52:03\",\n            \"updated_at\": \"2023-12-04 11:45:07\",\n            \"approval\": {\n                \"id\": 266069,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 229436,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-18 00:00:07\",\n                \"created_at\": \"2023-12-04 09:52:03\",\n                \"updated_at\": \"2023-12-18 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231027,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-18\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:01:49\",\n            \"updated_at\": \"2023-12-18 10:01:49\",\n            \"approval\": {\n                \"id\": 272214,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 231027,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:08\",\n                \"created_at\": \"2023-12-18 10:01:49\",\n                \"updated_at\": \"2024-01-01 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226555,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Skivakantie\",\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-01\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:38:16\",\n            \"updated_at\": \"2023-11-07 08:38:16\",\n            \"approval\": {\n                \"id\": 255008,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 226555,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-21 00:00:05\",\n                \"created_at\": \"2023-11-07 08:38:16\",\n                \"updated_at\": \"2023-11-21 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231028,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-05\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:02:17\",\n            \"updated_at\": \"2023-12-18 10:02:17\",\n            \"approval\": {\n                \"id\": 272215,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 231028,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:09\",\n                \"created_at\": \"2023-12-18 10:02:17\",\n                \"updated_at\": \"2024-01-01 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 232281,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": \"Wintersport\",\n            \"start_date\": \"2024-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-02 11:57:58\",\n            \"updated_at\": \"2024-01-08 08:25:36\",\n            \"approval\": {\n                \"id\": 277252,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 232281,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-08 08:25:38\",\n                \"created_at\": \"2024-01-02 11:57:58\",\n                \"updated_at\": \"2024-01-08 08:25:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233565,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"88.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2024-01-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-09 09:54:16\",\n            \"updated_at\": \"2024-01-09 09:54:16\",\n            \"approval\": {\n                \"id\": 281330,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 233565,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-23 00:00:05\",\n                \"created_at\": \"2024-01-09 09:54:16\",\n                \"updated_at\": \"2024-01-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 236090,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-23 12:43:38\",\n            \"updated_at\": \"2024-01-23 12:43:38\",\n            \"approval\": {\n                \"id\": 289590,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 236090,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-01 08:57:14\",\n                \"created_at\": \"2024-01-23 12:43:38\",\n                \"updated_at\": \"2024-02-01 08:57:14\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"120.00\",\n            \"reason\": \"wispo\",\n            \"start_date\": \"2024-02-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 08:59:15\",\n            \"updated_at\": \"2024-02-02 08:59:15\",\n            \"approval\": {\n                \"id\": 296759,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 237722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-02 15:15:49\",\n                \"created_at\": \"2024-02-02 08:59:15\",\n                \"updated_at\": \"2024-02-02 15:15:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237724,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:01:04\",\n            \"updated_at\": \"2024-02-02 09:01:04\",\n            \"approval\": {\n                \"id\": 296761,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 237724,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:07\",\n                \"created_at\": \"2024-02-02 09:01:04\",\n                \"updated_at\": \"2024-02-16 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237723,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-21\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:00:32\",\n            \"updated_at\": \"2024-02-02 09:00:32\",\n            \"approval\": {\n                \"id\": 296760,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 237723,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:06\",\n                \"created_at\": \"2024-02-02 09:00:32\",\n                \"updated_at\": \"2024-02-16 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 239730,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-15\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-02-17\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-02-15 09:25:36\",\n            \"updated_at\": \"2024-02-15 09:25:36\",\n            \"approval\": {\n                \"id\": 305251,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 239730,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-29 00:00:05\",\n                \"created_at\": \"2024-02-15 09:25:36\",\n                \"updated_at\": \"2024-02-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 240718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2024-02-22 10:10:07\",\n            \"updated_at\": \"2024-02-22 10:10:07\",\n            \"approval\": {\n                \"id\": 309128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 240718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-06 09:16:56\",\n                \"created_at\": \"2024-02-22 10:10:07\",\n                \"updated_at\": \"2024-03-06 09:16:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 241964,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-04 08:12:31\",\n            \"updated_at\": \"2024-03-04 08:12:31\",\n            \"approval\": {\n                \"id\": 315469,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 241964,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-04 08:12:33\",\n                \"created_at\": \"2024-03-04 08:12:31\",\n                \"updated_at\": \"2024-03-04 08:12:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-03-07\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-11\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-03-07 09:27:23\",\n            \"updated_at\": \"2024-03-07 09:27:23\",\n            \"approval\": {\n                \"id\": 318692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-07 09:27:44\",\n                \"created_at\": \"2024-03-07 09:27:23\",\n                \"updated_at\": \"2024-03-07 09:27:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243183,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-15\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-11 14:43:29\",\n            \"updated_at\": \"2024-03-11 14:43:29\",\n            \"approval\": {\n                \"id\": 321174,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 243183,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-11 14:43:44\",\n                \"created_at\": \"2024-03-11 14:43:29\",\n                \"updated_at\": \"2024-03-11 14:43:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243676,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-13 16:11:43\",\n            \"updated_at\": \"2024-03-13 16:11:43\",\n            \"approval\": {\n                \"id\": 323295,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 243676,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 00:00:05\",\n                \"created_at\": \"2024-03-13 16:11:43\",\n                \"updated_at\": \"2024-03-27 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 244168,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-18 08:37:48\",\n            \"updated_at\": \"2024-03-18 08:37:48\",\n            \"approval\": {\n                \"id\": 325872,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 244168,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-18 08:37:54\",\n                \"created_at\": \"2024-03-18 08:37:48\",\n                \"updated_at\": \"2024-03-18 08:37:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-07 13:57:20\",\n            \"updated_at\": \"2024-03-07 13:57:20\",\n            \"approval\": {\n                \"id\": 318993,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242706,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:49:48\",\n                \"created_at\": \"2024-03-07 13:57:20\",\n                \"updated_at\": \"2024-03-25 12:49:48\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 245564,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-25 12:50:20\",\n            \"updated_at\": \"2024-03-25 12:50:20\",\n            \"approval\": {\n                \"id\": 330841,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 245564,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:50:28\",\n                \"created_at\": \"2024-03-25 12:50:20\",\n                \"updated_at\": \"2024-03-25 12:50:28\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245813,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-26\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:42:07\",\n            \"updated_at\": \"2024-03-26 13:42:07\",\n            \"approval\": {\n                \"id\": 331804,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245813,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-26 13:42:11\",\n                \"created_at\": \"2024-03-26 13:42:07\",\n                \"updated_at\": \"2024-03-26 13:42:11\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245883,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-27 08:25:04\",\n            \"updated_at\": \"2024-03-27 08:25:04\",\n            \"approval\": {\n                \"id\": 332177,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245883,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 08:25:08\",\n                \"created_at\": \"2024-03-27 08:25:04\",\n                \"updated_at\": \"2024-03-27 08:25:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245737,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Goede Vrijdag\",\n            \"start_date\": \"2024-03-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 09:43:02\",\n            \"updated_at\": \"2024-03-26 09:43:02\",\n            \"approval\": {\n                \"id\": 331561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 245737,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-09 00:00:05\",\n                \"created_at\": \"2024-03-26 09:43:02\",\n                \"updated_at\": \"2024-04-09 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245812,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:41:31\",\n            \"updated_at\": \"2024-04-02 15:27:51\",\n            \"approval\": {\n                \"id\": 331803,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 245812,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-02 15:28:22\",\n                \"created_at\": \"2024-03-26 13:41:31\",\n                \"updated_at\": \"2024-04-02 15:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247497,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-08\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-08 07:57:21\",\n            \"updated_at\": \"2024-04-08 07:57:21\",\n            \"approval\": {\n                \"id\": 340443,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247497,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-08 07:57:23\",\n                \"created_at\": \"2024-04-08 07:57:21\",\n                \"updated_at\": \"2024-04-08 07:57:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 248287,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-12 08:04:30\",\n            \"updated_at\": \"2024-04-12 08:04:30\",\n            \"approval\": {\n                \"id\": 344053,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 248287,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-12 08:04:33\",\n                \"created_at\": \"2024-04-12 08:04:30\",\n                \"updated_at\": \"2024-04-12 08:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247091,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-04 12:22:36\",\n            \"updated_at\": \"2024-04-15 07:50:53\",\n            \"approval\": {\n                \"id\": 338597,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247091,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-15 07:50:55\",\n                \"created_at\": \"2024-04-04 12:22:36\",\n                \"updated_at\": \"2024-04-15 07:50:55\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249894,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-22 12:43:23\",\n            \"updated_at\": \"2024-04-22 12:43:23\",\n            \"approval\": {\n                \"id\": 350377,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249894,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 00:00:05\",\n                \"created_at\": \"2024-04-22 12:43:23\",\n                \"updated_at\": \"2024-05-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249343,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:23:47\",\n            \"updated_at\": \"2024-04-18 11:23:47\",\n            \"approval\": {\n                \"id\": 348134,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249343,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-18 11:23:53\",\n                \"created_at\": \"2024-04-18 11:23:47\",\n                \"updated_at\": \"2024-04-18 11:23:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249345,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:24:09\",\n            \"updated_at\": \"2024-04-25 11:59:59\",\n            \"approval\": {\n                \"id\": 348136,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 249345,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-25 12:00:02\",\n                \"created_at\": \"2024-04-18 11:24:09\",\n                \"updated_at\": \"2024-04-25 12:00:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251414,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-05-01\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-05-06\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-05-01 11:14:35\",\n            \"updated_at\": \"2024-05-01 11:14:35\",\n            \"approval\": {\n                \"id\": 357345,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251414,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-02 13:17:15\",\n                \"created_at\": \"2024-05-01 11:14:35\",\n                \"updated_at\": \"2024-05-02 13:17:15\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251131,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:39:53\",\n            \"updated_at\": \"2024-04-30 07:39:53\",\n            \"approval\": {\n                \"id\": 355572,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 251131,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:39:56\",\n                \"created_at\": \"2024-04-30 07:39:53\",\n                \"updated_at\": \"2024-04-30 07:39:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251134,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-09\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-10\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:40:54\",\n            \"updated_at\": \"2024-04-30 07:40:54\",\n            \"approval\": {\n                \"id\": 355577,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251134,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:40:57\",\n                \"created_at\": \"2024-04-30 07:40:54\",\n                \"updated_at\": \"2024-04-30 07:40:57\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251136,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:42:03\",\n            \"updated_at\": \"2024-04-30 07:42:03\",\n            \"approval\": {\n                \"id\": 355583,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 251136,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:42:07\",\n                \"created_at\": \"2024-04-30 07:42:03\",\n                \"updated_at\": \"2024-04-30 07:42:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253612,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:08:35\",\n            \"updated_at\": \"2024-05-15 12:08:35\",\n            \"approval\": {\n                \"id\": 366223,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 253612,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-15 12:08:45\",\n                \"created_at\": \"2024-05-15 12:08:35\",\n                \"updated_at\": \"2024-05-15 12:08:45\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253613,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:09:38\",\n            \"updated_at\": \"2024-05-15 12:09:38\",\n            \"approval\": {\n                \"id\": 366225,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 253613,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-29 00:00:07\",\n                \"created_at\": \"2024-05-15 12:09:38\",\n                \"updated_at\": \"2024-05-29 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253819,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191307,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-16 11:21:06\",\n            \"updated_at\": \"2024-05-16 11:21:06\",\n            \"approval\": {\n                \"id\": 366921,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 253819,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 145942,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-16 11:21:08\",\n                \"created_at\": \"2024-05-16 11:21:06\",\n                \"updated_at\": \"2024-05-16 11:21:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 250639,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-21\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-26 08:50:58\",\n            \"updated_at\": \"2024-05-06 08:00:36\",\n            \"approval\": {\n                \"id\": 353507,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 250639,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 08:00:39\",\n                \"created_at\": \"2024-04-26 08:50:58\",\n                \"updated_at\": \"2024-05-06 08:00:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 255715,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-30\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-04\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-30 10:45:10\",\n            \"updated_at\": \"2024-05-30 10:45:10\",\n            \"approval\": {\n                \"id\": 375237,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 255715,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 09:00:41\",\n                \"created_at\": \"2024-05-30 10:45:10\",\n                \"updated_at\": \"2024-06-10 09:00:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 256926,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-07 14:21:28\",\n            \"updated_at\": \"2024-06-07 14:21:28\",\n            \"approval\": {\n                \"id\": 382306,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 256926,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-07 14:21:32\",\n                \"created_at\": \"2024-06-07 14:21:28\",\n                \"updated_at\": \"2024-06-07 14:21:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257084,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-14\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:34:38\",\n            \"updated_at\": \"2024-06-10 07:34:48\",\n            \"approval\": {\n                \"id\": 383048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257084,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:34:59\",\n                \"created_at\": \"2024-06-10 07:34:38\",\n                \"updated_at\": \"2024-06-10 07:34:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257474,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-11 13:23:11\",\n            \"updated_at\": \"2024-06-11 13:23:11\",\n            \"approval\": {\n                \"id\": 384784,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257474,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-19 08:19:42\",\n                \"created_at\": \"2024-06-11 13:23:11\",\n                \"updated_at\": \"2024-06-19 08:19:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258138,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"midweekje met de vrouw\",\n            \"start_date\": \"2024-06-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-17 09:17:50\",\n            \"updated_at\": \"2024-06-17 09:17:50\",\n            \"approval\": {\n                \"id\": 388429,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 258138,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-17 09:18:25\",\n                \"created_at\": \"2024-06-17 09:17:50\",\n                \"updated_at\": \"2024-06-17 09:18:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257086,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:35:23\",\n            \"updated_at\": \"2024-06-10 07:35:23\",\n            \"approval\": {\n                \"id\": 383050,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 257086,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:35:26\",\n                \"created_at\": \"2024-06-10 07:35:23\",\n                \"updated_at\": \"2024-06-10 07:35:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259520,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:11\",\n            \"updated_at\": \"2024-06-25 07:34:11\",\n            \"approval\": {\n                \"id\": 394199,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259520,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-25 07:34:16\",\n                \"created_at\": \"2024-06-25 07:34:11\",\n                \"updated_at\": \"2024-06-25 07:34:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259524,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:35\",\n            \"updated_at\": \"2024-06-25 07:34:35\",\n            \"approval\": {\n                \"id\": 394203,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 259524,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 12:05:40\",\n                \"created_at\": \"2024-06-25 07:34:35\",\n                \"updated_at\": \"2024-07-05 12:05:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 259373,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"12.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-24 13:39:40\",\n            \"updated_at\": \"2024-07-02 09:26:16\",\n            \"approval\": {\n                \"id\": 393668,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 259373,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-08 00:00:05\",\n                \"created_at\": \"2024-06-24 13:39:40\",\n                \"updated_at\": \"2024-07-08 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259685,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 11:27:15\",\n            \"updated_at\": \"2024-07-02 09:25:42\",\n            \"approval\": {\n                \"id\": 394542,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259685,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 00:00:08\",\n                \"created_at\": \"2024-06-25 11:27:15\",\n                \"updated_at\": \"2024-07-09 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-31\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:50:07\",\n            \"updated_at\": \"2024-07-09 11:50:07\",\n            \"approval\": {\n                \"id\": 405825,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 262245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:50:10\",\n                \"created_at\": \"2024-07-09 11:50:07\",\n                \"updated_at\": \"2024-07-09 11:50:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262244,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:49:21\",\n            \"updated_at\": \"2024-07-09 11:49:21\",\n            \"approval\": {\n                \"id\": 405824,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 262244,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 12:28:17\",\n                \"created_at\": \"2024-07-09 11:49:21\",\n                \"updated_at\": \"2024-07-09 12:28:17\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 261664,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-05 10:35:54\",\n            \"updated_at\": \"2024-07-05 10:35:54\",\n            \"approval\": {\n                \"id\": 403271,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 261664,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 10:36:03\",\n                \"created_at\": \"2024-07-05 10:35:54\",\n                \"updated_at\": \"2024-07-05 10:36:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258953,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191305,\n            \"hours\": \"72.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-21 09:37:28\",\n            \"updated_at\": \"2024-06-21 09:37:28\",\n            \"approval\": {\n                \"id\": 392094,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 258953,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 07:33:18\",\n                \"created_at\": \"2024-06-21 09:37:28\",\n                \"updated_at\": \"2024-07-24 07:33:18\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262541,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-17\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-11 10:06:32\",\n            \"updated_at\": \"2024-07-11 10:06:32\",\n            \"approval\": {\n                \"id\": 407080,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262541,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-25 00:00:05\",\n                \"created_at\": \"2024-07-11 10:06:32\",\n                \"updated_at\": \"2024-07-25 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262246,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2024-07-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:51:35\",\n            \"updated_at\": \"2024-07-09 11:51:35\",\n            \"approval\": {\n                \"id\": 405826,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262246,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:51:40\",\n                \"created_at\": \"2024-07-09 11:51:35\",\n                \"updated_at\": \"2024-07-09 11:51:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 265119,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Huwelijk\",\n            \"start_date\": \"2024-07-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-29 13:56:24\",\n            \"updated_at\": \"2024-07-29 13:56:24\",\n            \"approval\": {\n                \"id\": 417658,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 265119,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 00:00:05\",\n                \"created_at\": \"2024-07-29 13:56:24\",\n                \"updated_at\": \"2024-08-12 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 264647,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-26 07:35:14\",\n            \"updated_at\": \"2024-08-05 10:59:13\",\n            \"approval\": {\n                \"id\": 416162,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 264647,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 10:59:16\",\n                \"created_at\": \"2024-07-26 07:35:14\",\n                \"updated_at\": \"2024-08-05 10:59:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 266319,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-05 10:59:54\",\n            \"updated_at\": \"2024-08-05 10:59:54\",\n            \"approval\": {\n                \"id\": 423012,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 266319,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 11:01:01\",\n                \"created_at\": \"2024-08-05 10:59:54\",\n                \"updated_at\": \"2024-08-05 11:01:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267428,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:32:21\",\n            \"updated_at\": \"2024-08-12 10:32:21\",\n            \"approval\": {\n                \"id\": 426493,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 267428,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-14 09:53:53\",\n                \"created_at\": \"2024-08-12 10:32:21\",\n                \"updated_at\": \"2024-08-14 09:53:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267427,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:31:56\",\n            \"updated_at\": \"2024-08-12 10:31:56\",\n            \"approval\": {\n                \"id\": 426492,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 267427,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 10:32:05\",\n                \"created_at\": \"2024-08-12 10:31:56\",\n                \"updated_at\": \"2024-08-12 10:32:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268249,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-19 11:17:46\",\n            \"updated_at\": \"2024-08-19 11:17:46\",\n            \"approval\": {\n                \"id\": 429949,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 268249,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-02 00:00:07\",\n                \"created_at\": \"2024-08-19 11:17:46\",\n                \"updated_at\": \"2024-09-02 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 263904,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-19 07:35:04\",\n            \"updated_at\": \"2024-07-19 07:35:04\",\n            \"approval\": {\n                \"id\": 412359,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 263904,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 08:16:32\",\n                \"created_at\": \"2024-07-19 07:35:04\",\n                \"updated_at\": \"2024-07-24 08:16:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 269483,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-28\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-28\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-27 11:50:24\",\n            \"updated_at\": \"2024-08-27 11:50:24\",\n            \"approval\": {\n                \"id\": 435303,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 269483,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-10 00:00:09\",\n                \"created_at\": \"2024-08-27 11:50:24\",\n                \"updated_at\": \"2024-09-10 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"52.00\",\n            \"reason\": \"Weekje Spanje\",\n            \"start_date\": \"2024-08-31\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-08-22 13:11:35\",\n            \"updated_at\": \"2024-09-01 16:15:05\",\n            \"approval\": {\n                \"id\": 432189,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 268855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-01 16:15:10\",\n                \"created_at\": \"2024-08-22 13:11:35\",\n                \"updated_at\": \"2024-09-01 16:15:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270622,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"4.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-04 09:56:20\",\n            \"updated_at\": \"2024-09-04 09:56:20\",\n            \"approval\": {\n                \"id\": 444256,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270622,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:29\",\n                \"created_at\": \"2024-09-04 09:56:20\",\n                \"updated_at\": \"2024-09-11 13:10:29\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270768,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-05 08:30:19\",\n            \"updated_at\": \"2024-09-05 08:30:19\",\n            \"approval\": {\n                \"id\": 445287,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270768,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:59\",\n                \"created_at\": \"2024-09-05 08:30:19\",\n                \"updated_at\": \"2024-09-11 13:10:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 271887,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-12 12:26:40\",\n            \"updated_at\": \"2024-09-12 12:26:40\",\n            \"approval\": {\n                \"id\": 452856,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 271887,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-12 12:27:20\",\n                \"created_at\": \"2024-09-12 12:26:40\",\n                \"updated_at\": \"2024-09-12 12:27:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272021,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"0.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-18\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-13 09:16:07\",\n            \"updated_at\": \"2024-09-13 09:16:07\",\n            \"approval\": {\n                \"id\": 453813,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 272021,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-13 11:49:42\",\n                \"created_at\": \"2024-09-13 09:16:07\",\n                \"updated_at\": \"2024-09-13 11:49:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272935,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-19 07:50:50\",\n            \"updated_at\": \"2024-09-19 07:50:50\",\n            \"approval\": {\n                \"id\": 459293,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 272935,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-19 07:50:54\",\n                \"created_at\": \"2024-09-19 07:50:50\",\n                \"updated_at\": \"2024-09-19 07:50:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273831,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"13.02\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-25\",\n            \"start_time\": \"09:14\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"10:15\",\n            \"created_at\": \"2024-09-25 08:19:43\",\n            \"updated_at\": \"2024-09-25 08:19:43\",\n            \"approval\": {\n                \"id\": 464718,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 273831,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-25 08:19:43\",\n                \"created_at\": \"2024-09-25 08:19:43\",\n                \"updated_at\": \"2024-09-25 08:19:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 274057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"28.00\",\n            \"reason\": \"weekend weg\",\n            \"start_date\": \"2024-09-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-03\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-26 09:43:50\",\n            \"updated_at\": \"2024-09-26 09:43:50\",\n            \"approval\": {\n                \"id\": 466280,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 274057,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-26 12:04:33\",\n                \"created_at\": \"2024-09-26 09:43:50\",\n                \"updated_at\": \"2024-09-26 12:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273719,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-27\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-24 12:14:25\",\n            \"updated_at\": \"2024-09-24 12:14:25\",\n            \"approval\": {\n                \"id\": 463911,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 273719,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-24 12:14:25\",\n                \"created_at\": \"2024-09-24 12:14:25\",\n                \"updated_at\": \"2024-09-24 12:14:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 275695,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"lang weekend weg\",\n            \"start_date\": \"2024-10-10\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-15\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-07 09:22:20\",\n            \"updated_at\": \"2024-10-08 07:41:39\",\n            \"approval\": {\n                \"id\": 478491,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 275695,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:41:44\",\n                \"created_at\": \"2024-10-07 09:22:20\",\n                \"updated_at\": \"2024-10-08 07:41:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 275876,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191304,\n            \"hours\": \"384.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-14\",\n            \"start_time\": null,\n            \"end_date\": \"2025-02-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-10-08 07:43:46\",\n            \"updated_at\": \"2024-10-08 07:43:46\",\n            \"approval\": {\n                \"id\": 479809,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 275876,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:44:16\",\n                \"created_at\": \"2024-10-08 07:43:46\",\n                \"updated_at\": \"2024-10-08 07:44:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 274862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"19.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-23\",\n            \"start_time\": \"14:00\",\n            \"end_date\": \"2024-10-27\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-01 12:48:35\",\n            \"updated_at\": \"2024-10-21 08:21:27\",\n            \"approval\": {\n                \"id\": 472584,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 274862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-21 08:21:38\",\n                \"created_at\": \"2024-10-01 12:48:35\",\n                \"updated_at\": \"2024-10-21 08:21:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"d8942f8a-cb88-4295-adc5-4ce92184b908"},{"name":"Update leave request","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"d6eb6a6a-6156-40d7-9bf2-2713ea9e021e"}}],"id":"cb30c4ee-e0f0-4a9f-b943-192b15bce8bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n        \"reason\": \"Day off\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-requests/196423","description":"<p>Updates leave requests</p>\n","urlObject":{"path":["leave-requests","196423"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"3196b5f9-f2e4-41e9-8306-3b021cfc9699","name":"Update leave request","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n        \"reason\": \"Day off\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-requests/196423"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 11 Dec 2024 09:28:46 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 196423,\n        \"organization_id\": 14799,\n        \"employee_id\": 138745,\n        \"leave_type_id\": 191301,\n        \"hours\": \"32.00\",\n        \"reason\": \"Day off\",\n        \"start_date\": \"2021-04-19\",\n        \"start_time\": null,\n        \"end_date\": \"2021-04-23\",\n        \"end_time\": null,\n        \"created_at\": \"2021-05-05 15:00:31\",\n        \"updated_at\": \"2024-12-11 09:28:46\",\n        \"approval\": {\n            \"id\": 119684,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"expense_id\": null,\n            \"leave_request_id\": 196423,\n            \"leave_scheme_id\": null,\n            \"time_registration_id\": null,\n            \"trip_registration_id\": null,\n            \"work_location_status_id\": null,\n            \"approver_id\": 144406,\n            \"status\": \"rejected\",\n            \"comments\": \"Liever een andere week !\",\n            \"auto_approval_date\": null,\n            \"is_sequential\": false,\n            \"status_changed_at\": \"2021-06-17 12:29:01\",\n            \"created_at\": \"2021-05-05 15:00:31\",\n            \"updated_at\": \"2021-06-17 12:29:01\",\n            \"_permissions\": [\n                \"read\",\n                \"update\"\n            ]\n        },\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ],\n        \"hours_remaining_after_approval\": \"46.73\"\n    }\n}"}],"_postman_id":"cb30c4ee-e0f0-4a9f-b943-192b15bce8bd"},{"name":"Delete leave request","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"c7f2e830-597e-4d87-9c16-5b1113ec0096"}}],"id":"c0f9c90e-5183-49a1-a888-9a705eaf2118","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/leave-requests/282440","description":"<p>Delete leave request</p>\n","urlObject":{"path":["leave-requests","282440"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"85512fac-2c13-4daf-b140-1c87e72e033d","name":"Create leave request Copy","originalRequest":{"method":"DELETE","header":[],"url":"https://api.buddee.nl/leave-requests/282440"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 13:49:19 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"c0f9c90e-5183-49a1-a888-9a705eaf2118"}],"id":"d2047d86-1c5b-4283-8fb2-c8e0e865b79b","description":"<p>Each leave request needs a leave type in order to be created. When a leave request is created an Approval is sumulationiously created, this approval determines wether or not a request is approved.</p>\n<h4 id=\"sortable-fields\">Sortable fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n<th>Custom Logic</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>Start date of the leave request</td>\n<td>Standard <code>orderBy</code> on <code>leave_requests.start_date</code></td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>End date of the leave request</td>\n<td>Standard <code>orderBy</code> on <code>leave_requests.end_date</code></td>\n</tr>\n<tr>\n<td>approval</td>\n<td>Approval status</td>\n<td>Joins <code>approvals</code> table, sorts by <code>approvals.status</code> and <code>leave_requests.start_date</code></td>\n</tr>\n<tr>\n<td>employee</td>\n<td>Employee name</td>\n<td>Joins <code>employees</code> table, sorts by <code>employees.full_name</code> and <code>leave_requests.start_date</code></td>\n</tr>\n<tr>\n<td>leave_type</td>\n<td>Leave type</td>\n<td>Joins <code>leave_types</code> table, sorts by <code>leave_types.position</code> and <code>leave_requests.start_date</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"model\">Model</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Validation Rules</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employee_id</td>\n<td>Integer</td>\n<td>ID of the employee</td>\n<td><code>required</code>, <code>uneditable</code>, <code>scoped_employee_id</code></td>\n<td>Links the leave request to an employee. Cannot be edited after creation.</td>\n</tr>\n<tr>\n<td>leave_type_id</td>\n<td>Integer</td>\n<td>ID of the leave type</td>\n<td><code>required</code>, ExistsRule with complex conditions</td>\n<td>Ensures leave type exists and matches constraints with balances or types.</td>\n</tr>\n<tr>\n<td>hours</td>\n<td>Decimal</td>\n<td>Number of leave hours</td>\n<td><code>nullable</code>, <code>numeric</code>, <code>between:0,2080</code></td>\n<td>Optional; allows up to 2080 hours (a full work year).</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>String (Text)</td>\n<td>Reason for the leave</td>\n<td>Not explicitly validated in the rules</td>\n<td>Free-text field for describing the leave reason.</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>Date</td>\n<td>Start date of the leave request</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code></td>\n<td>Must be a valid date in <code>Y-m-d</code> format.</td>\n</tr>\n<tr>\n<td>start_time</td>\n<td>Time</td>\n<td>Start time of the leave request</td>\n<td><code>nullable</code>, <code>time</code></td>\n<td>Optional; must be a valid time format.</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>Date</td>\n<td>End date of the leave request</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code>, <code>after_or_equal:start_date</code></td>\n<td>Must be a valid date, not earlier than the <code>start_date</code>.</td>\n</tr>\n<tr>\n<td>end_time</td>\n<td>Time</td>\n<td>End time of the leave request</td>\n<td><code>nullable</code>, <code>time</code></td>\n<td>Optional; must be a valid time format.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d2047d86-1c5b-4283-8fb2-c8e0e865b79b"},{"name":"Leave registrations","item":[{"name":"Leave registrations","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"6a096cee-22d7-4955-8bcd-c15bc3cde528"}}],"id":"adbff09c-101a-4638-92aa-8977ca106e28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/leave-registrations","description":"<p>Retrieves all leave registrations.</p>\n","urlObject":{"path":["leave-registrations"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filters by leave_requests.employee_id</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Filters by leave_requests.leave_type_id</p>\n","type":"text/plain"},"key":"leave_type_id","value":""},{"disabled":true,"key":"leave_request_id","value":""},{"disabled":true,"key":"leave_balance_id","value":""},{"disabled":true,"key":"active_in_period","value":" "},{"disabled":true,"key":"approval_status","value":""}],"variable":[]}},"response":[{"id":"85dabc1e-abb9-4e6a-9cfc-1ae4b4ebf6dc","name":"leave request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/leave-requests?sort=start_date&employee_id=&leave_type_id=&active_in_period= &approval_status=","host":["https://api.buddee.nl"],"path":["leave-requests"],"query":[{"key":"sort","value":"start_date","type":"text"},{"key":"employee_id","value":"","description":"Filters by leave_requests.employee_id","type":"text"},{"key":"leave_type_id","value":"","description":"Filters by leave_requests.leave_type_id","type":"text"},{"key":"active_in_period","value":" ","type":"text"},{"key":"approval_status","value":"","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 08:42:24 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 144,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 196423,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-19\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-05 15:00:31\",\n            \"updated_at\": \"2021-06-17 12:29:01\",\n            \"approval\": {\n                \"id\": 119684,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196423,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week !\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-06-17 12:29:01\",\n                \"created_at\": \"2021-05-05 15:00:31\",\n                \"updated_at\": \"2021-06-17 12:29:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196393,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-04-29\",\n            \"start_time\": null,\n            \"end_date\": \"2021-04-30\",\n            \"end_time\": null,\n            \"created_at\": \"2021-04-29 08:54:47\",\n            \"updated_at\": \"2021-11-08 07:54:35\",\n            \"approval\": {\n                \"id\": 119654,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196393,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:35\",\n                \"created_at\": \"2021-04-29 08:54:47\",\n                \"updated_at\": \"2021-11-08 07:54:35\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-05-06\",\n            \"start_time\": null,\n            \"end_date\": \"2021-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2021-05-06 13:18:16\",\n            \"updated_at\": \"2021-11-08 07:54:26\",\n            \"approval\": {\n                \"id\": 119694,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 196435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, teveel mensen met vakantie\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:26\",\n                \"created_at\": \"2021-05-06 13:18:16\",\n                \"updated_at\": \"2021-11-08 07:54:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197276,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"15.50\",\n            \"reason\": null,\n            \"start_date\": \"2021-09-29\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2021-09-30\",\n            \"end_time\": \"16:30\",\n            \"created_at\": \"2021-09-29 10:45:14\",\n            \"updated_at\": \"2021-11-08 07:54:52\",\n            \"approval\": {\n                \"id\": 120506,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 197276,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2021-11-08 07:54:52\",\n                \"created_at\": \"2021-09-29 10:45:14\",\n                \"updated_at\": \"2021-11-08 07:54:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 198358,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg\",\n            \"start_date\": \"2022-02-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-02-12\",\n            \"end_time\": null,\n            \"created_at\": \"2022-02-10 10:38:19\",\n            \"updated_at\": \"2022-02-10 10:38:19\",\n            \"approval\": {\n                \"id\": 131288,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198358,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-02-10 10:38:40\",\n                \"created_at\": \"2022-02-10 10:38:19\",\n                \"updated_at\": \"2022-02-10 10:38:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198609,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Midweekje vakantie\",\n            \"start_date\": \"2022-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-01 11:24:16\",\n            \"updated_at\": \"2022-03-01 11:24:16\",\n            \"approval\": {\n                \"id\": 132354,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198609,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-01 11:24:33\",\n                \"created_at\": \"2022-03-01 11:24:16\",\n                \"updated_at\": \"2022-03-01 11:24:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 198705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-03-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-03-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-03-09 11:01:21\",\n            \"updated_at\": \"2022-03-09 11:01:21\",\n            \"approval\": {\n                \"id\": 132675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 198705,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-03-23 00:00:05\",\n                \"created_at\": \"2022-03-09 11:01:21\",\n                \"updated_at\": \"2022-03-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 199761,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"6.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-05-20\",\n            \"start_time\": \"11:00\",\n            \"end_date\": \"2022-05-21\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2022-05-20 10:20:39\",\n            \"updated_at\": \"2022-05-20 10:20:39\",\n            \"approval\": {\n                \"id\": 137599,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 199761,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-05-20 10:20:43\",\n                \"created_at\": \"2022-05-20 10:20:39\",\n                \"updated_at\": \"2022-05-20 10:20:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200004,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-06-08\",\n            \"start_time\": null,\n            \"end_date\": \"2022-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-06-08 09:17:58\",\n            \"updated_at\": \"2022-06-08 09:17:58\",\n            \"approval\": {\n                \"id\": 139024,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200004,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-06-22 00:00:04\",\n                \"created_at\": \"2022-06-08 09:17:58\",\n                \"updated_at\": \"2022-06-22 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200468,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-06\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-05 11:13:08\",\n            \"updated_at\": \"2022-07-05 11:13:08\",\n            \"approval\": {\n                \"id\": 141383,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200468,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-19 00:00:04\",\n                \"created_at\": \"2022-07-05 11:13:08\",\n                \"updated_at\": \"2022-07-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 200830,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-07-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2022-07-20 20:59:20\",\n            \"updated_at\": \"2022-07-20 20:59:20\",\n            \"approval\": {\n                \"id\": 142560,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 200830,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-07-20 20:59:24\",\n                \"created_at\": \"2022-07-20 20:59:20\",\n                \"updated_at\": \"2022-07-20 20:59:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201545,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-01\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:23:19\",\n            \"updated_at\": \"2022-08-30 11:23:19\",\n            \"approval\": {\n                \"id\": 145567,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201545,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:23:19\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-08-10\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-10 12:48:54\",\n            \"updated_at\": \"2022-08-10 12:48:54\",\n            \"approval\": {\n                \"id\": 144205,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-08-16 08:39:24\",\n                \"created_at\": \"2022-08-10 12:48:54\",\n                \"updated_at\": \"2022-08-16 08:39:24\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201540,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 08:06:47\",\n            \"updated_at\": \"2022-08-30 08:06:47\",\n            \"approval\": {\n                \"id\": 145544,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201540,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:16:39\",\n                \"created_at\": \"2022-08-30 08:06:47\",\n                \"updated_at\": \"2022-09-02 08:16:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201543,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-08-30\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:17:13\",\n            \"updated_at\": \"2022-08-30 11:17:13\",\n            \"approval\": {\n                \"id\": 145565,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201543,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:04\",\n                \"created_at\": \"2022-08-30 11:17:13\",\n                \"updated_at\": \"2022-09-13 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201544,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-30 11:21:04\",\n            \"updated_at\": \"2022-08-30 11:21:04\",\n            \"approval\": {\n                \"id\": 145566,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201544,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-13 00:00:05\",\n                \"created_at\": \"2022-08-30 11:21:04\",\n                \"updated_at\": \"2022-09-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201573,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-02\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-02\",\n            \"end_time\": null,\n            \"created_at\": \"2022-08-31 08:06:15\",\n            \"updated_at\": \"2022-08-31 08:06:15\",\n            \"approval\": {\n                \"id\": 145712,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201573,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-14 00:00:04\",\n                \"created_at\": \"2022-08-31 08:06:15\",\n                \"updated_at\": \"2022-09-14 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-02 08:17:33\",\n            \"updated_at\": \"2022-09-02 08:17:33\",\n            \"approval\": {\n                \"id\": 146110,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-02 08:17:42\",\n                \"created_at\": \"2022-09-02 08:17:33\",\n                \"updated_at\": \"2022-09-02 08:17:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201738,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-07\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-09\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-06 11:14:48\",\n            \"updated_at\": \"2022-09-06 11:14:48\",\n            \"approval\": {\n                \"id\": 146619,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201738,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-20 00:00:05\",\n                \"created_at\": \"2022-09-06 11:14:48\",\n                \"updated_at\": \"2022-09-20 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201677,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2022-09-09\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2022-09-12\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2022-09-05 08:44:06\",\n            \"updated_at\": \"2022-09-05 08:44:06\",\n            \"approval\": {\n                \"id\": 146480,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201677,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-09-19 00:00:04\",\n                \"created_at\": \"2022-09-05 08:44:06\",\n                \"updated_at\": \"2022-09-19 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 201790,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-12\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-16\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-08 09:52:59\",\n            \"updated_at\": \"2022-09-08 09:52:59\",\n            \"approval\": {\n                \"id\": 146839,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 201790,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-17 11:01:23\",\n                \"created_at\": \"2022-09-08 09:52:59\",\n                \"updated_at\": \"2022-10-17 11:01:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202156,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-09-29 07:46:38\",\n            \"updated_at\": \"2022-09-29 07:46:38\",\n            \"approval\": {\n                \"id\": 149079,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202156,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-13 00:00:03\",\n                \"created_at\": \"2022-09-29 07:46:38\",\n                \"updated_at\": \"2022-10-13 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202655,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-19 08:56:47\",\n            \"updated_at\": \"2022-10-19 08:56:47\",\n            \"approval\": {\n                \"id\": 151650,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202655,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:02:58\",\n                \"created_at\": \"2022-10-19 08:56:47\",\n                \"updated_at\": \"2022-10-26 09:02:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202635,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-18 13:43:51\",\n            \"updated_at\": \"2022-10-18 13:43:51\",\n            \"approval\": {\n                \"id\": 151578,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202635,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:40\",\n                \"created_at\": \"2022-10-18 13:43:51\",\n                \"updated_at\": \"2022-10-26 09:03:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-24\",\n            \"start_time\": null,\n            \"end_date\": \"2022-10-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-20 11:14:13\",\n            \"updated_at\": \"2022-10-20 11:14:13\",\n            \"approval\": {\n                \"id\": 151829,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:04\",\n                \"created_at\": \"2022-10-20 11:14:13\",\n                \"updated_at\": \"2022-10-26 09:03:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202863,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-27\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 08:29:42\",\n            \"updated_at\": \"2022-10-26 08:29:42\",\n            \"approval\": {\n                \"id\": 152437,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202863,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:03:12\",\n                \"created_at\": \"2022-10-26 08:29:42\",\n                \"updated_at\": \"2022-10-26 09:03:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 202896,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-04\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-27 09:45:36\",\n            \"updated_at\": \"2022-10-27 09:45:36\",\n            \"approval\": {\n                \"id\": 152561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202896,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-10 00:00:04\",\n                \"created_at\": \"2022-10-27 09:45:36\",\n                \"updated_at\": \"2022-11-10 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203875,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"176.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 13:43:41\",\n            \"updated_at\": \"2022-11-24 13:43:41\",\n            \"approval\": {\n                \"id\": 156663,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203875,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"Mag niet\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 13:44:02\",\n                \"created_at\": \"2022-11-24 13:43:41\",\n                \"updated_at\": \"2022-11-24 13:44:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-09 09:09:37\",\n            \"updated_at\": \"2022-11-09 09:09:37\",\n            \"approval\": {\n                \"id\": 154517,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 14:37:58\",\n                \"created_at\": \"2022-11-09 09:09:37\",\n                \"updated_at\": \"2022-11-09 14:37:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203869,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-21\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-24 12:40:05\",\n            \"updated_at\": \"2022-11-24 12:40:05\",\n            \"approval\": {\n                \"id\": 156651,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203869,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-24 12:40:38\",\n                \"created_at\": \"2022-11-24 12:40:05\",\n                \"updated_at\": \"2022-11-24 12:40:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203982,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-11-28\",\n            \"start_time\": null,\n            \"end_date\": \"2022-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:50:08\",\n            \"updated_at\": \"2022-11-28 13:50:08\",\n            \"approval\": {\n                \"id\": 157133,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203982,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-01 10:37:47\",\n                \"created_at\": \"2022-11-28 13:50:08\",\n                \"updated_at\": \"2022-12-01 10:37:47\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203637,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"208.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-06\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-17 13:38:31\",\n            \"updated_at\": \"2022-11-17 13:38:31\",\n            \"approval\": {\n                \"id\": 155624,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203637,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-17 13:39:02\",\n                \"created_at\": \"2022-11-17 13:38:31\",\n                \"updated_at\": \"2022-11-17 13:39:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203915,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-01\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-25 13:29:01\",\n            \"updated_at\": \"2022-11-25 13:29:01\",\n            \"approval\": {\n                \"id\": 156812,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203915,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": \"test\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-25 13:29:41\",\n                \"created_at\": \"2022-11-25 13:29:01\",\n                \"updated_at\": \"2022-11-25 13:29:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-19\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 09:25:09\",\n            \"updated_at\": \"2022-12-20 09:25:09\",\n            \"approval\": {\n                \"id\": 160424,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:04\",\n                \"created_at\": \"2022-12-20 09:25:09\",\n                \"updated_at\": \"2023-01-03 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204741,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Dagje vrij\",\n            \"start_date\": \"2022-12-20\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:07:53\",\n            \"updated_at\": \"2022-12-20 13:07:53\",\n            \"approval\": {\n                \"id\": 160494,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204741,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:07:53\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 203981,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-11-28 13:36:08\",\n            \"updated_at\": \"2022-11-28 13:36:08\",\n            \"approval\": {\n                \"id\": 157128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 203981,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-28 13:36:58\",\n                \"created_at\": \"2022-11-28 13:36:08\",\n                \"updated_at\": \"2022-11-28 13:36:58\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204488,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-12 13:46:47\",\n            \"updated_at\": \"2022-12-12 13:46:47\",\n            \"approval\": {\n                \"id\": 159370,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204488,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-26 00:00:04\",\n                \"created_at\": \"2022-12-12 13:46:47\",\n                \"updated_at\": \"2022-12-26 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204742,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"vakantie\",\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:17:40\",\n            \"updated_at\": \"2022-12-20 13:17:40\",\n            \"approval\": {\n                \"id\": 160495,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204742,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-20 13:18:31\",\n                \"created_at\": \"2022-12-20 13:17:40\",\n                \"updated_at\": \"2022-12-20 13:18:31\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204823,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-30\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-22 10:11:11\",\n            \"updated_at\": \"2022-12-22 10:11:11\",\n            \"approval\": {\n                \"id\": 160843,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204823,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-22 10:11:56\",\n                \"created_at\": \"2022-12-22 10:11:11\",\n                \"updated_at\": \"2022-12-22 10:11:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204968,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2022-12-26\",\n            \"start_time\": null,\n            \"end_date\": \"2022-12-31\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-29 08:35:46\",\n            \"updated_at\": \"2022-12-29 08:35:46\",\n            \"approval\": {\n                \"id\": 161549,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204968,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Liever een andere week, want dan zijn er al 2 collega's weg\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-10 14:45:07\",\n                \"created_at\": \"2022-12-29 08:35:46\",\n                \"updated_at\": \"2023-01-10 14:45:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 204802,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-07\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-21 13:09:28\",\n            \"updated_at\": \"2022-12-21 13:09:28\",\n            \"approval\": {\n                \"id\": 160675,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204802,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-21 13:09:38\",\n                \"created_at\": \"2022-12-21 13:09:28\",\n                \"updated_at\": \"2022-12-21 13:09:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204743,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-20 13:20:23\",\n            \"updated_at\": \"2022-12-20 13:20:23\",\n            \"approval\": {\n                \"id\": 160496,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204743,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-03 00:00:05\",\n                \"created_at\": \"2022-12-20 13:20:23\",\n                \"updated_at\": \"2023-01-03 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 205663,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-20\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-13 14:04:01\",\n            \"updated_at\": \"2023-01-13 14:04:01\",\n            \"approval\": {\n                \"id\": 163964,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205663,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-13 14:04:25\",\n                \"created_at\": \"2023-01-13 14:04:01\",\n                \"updated_at\": \"2023-01-13 14:04:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205506,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-27\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-11 11:11:05\",\n            \"updated_at\": \"2023-01-11 11:11:05\",\n            \"approval\": {\n                \"id\": 163528,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205506,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-11 11:11:49\",\n                \"created_at\": \"2023-01-11 11:11:05\",\n                \"updated_at\": \"2023-01-11 11:11:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 205862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-01-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-19 12:14:43\",\n            \"updated_at\": \"2023-01-19 12:14:43\",\n            \"approval\": {\n                \"id\": 164756,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 205862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-19 12:15:19\",\n                \"created_at\": \"2023-01-19 12:14:43\",\n                \"updated_at\": \"2023-01-19 12:15:19\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 206245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"104.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-01-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-01-30 12:44:46\",\n            \"updated_at\": \"2023-01-30 12:44:46\",\n            \"approval\": {\n                \"id\": 166418,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-01-30 12:45:12\",\n                \"created_at\": \"2023-01-30 12:44:46\",\n                \"updated_at\": \"2023-01-30 12:45:12\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202867,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-28\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:04:02\",\n            \"updated_at\": \"2022-10-26 09:04:02\",\n            \"approval\": {\n                \"id\": 152456,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202867,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-10-26 09:04:04\",\n                \"created_at\": \"2022-10-26 09:04:02\",\n                \"updated_at\": \"2022-10-26 09:04:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 206942,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-02-20\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-02-13 13:09:59\",\n            \"updated_at\": \"2023-02-13 13:09:59\",\n            \"approval\": {\n                \"id\": 169385,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 206942,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-02-27 00:00:04\",\n                \"created_at\": \"2023-02-13 13:09:59\",\n                \"updated_at\": \"2023-02-27 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 204539,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2022-12-13 12:39:47\",\n            \"updated_at\": \"2022-12-13 12:39:47\",\n            \"approval\": {\n                \"id\": 159552,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 204539,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-12-13 12:40:32\",\n                \"created_at\": \"2022-12-13 12:39:47\",\n                \"updated_at\": \"2022-12-13 12:40:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 208038,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-06\",\n            \"start_time\": null,\n            \"end_date\": \"2023-03-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-09 10:11:34\",\n            \"updated_at\": \"2023-03-09 10:11:34\",\n            \"approval\": {\n                \"id\": 174513,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208038,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-09 10:12:41\",\n                \"created_at\": \"2023-03-09 10:11:34\",\n                \"updated_at\": \"2023-03-09 10:12:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 208946,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-04-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-03-31 12:09:32\",\n            \"updated_at\": \"2023-03-31 12:09:32\",\n            \"approval\": {\n                \"id\": 179569,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 208946,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-03-31 12:09:54\",\n                \"created_at\": \"2023-03-31 12:09:32\",\n                \"updated_at\": \"2023-03-31 12:09:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 202868,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-05-07\",\n            \"start_time\": null,\n            \"end_date\": \"2023-05-08\",\n            \"end_time\": null,\n            \"created_at\": \"2022-10-26 09:09:48\",\n            \"updated_at\": \"2022-10-26 09:09:48\",\n            \"approval\": {\n                \"id\": 152457,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 202868,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2022-11-09 00:00:03\",\n                \"created_at\": \"2022-10-26 09:09:48\",\n                \"updated_at\": \"2022-11-09 00:00:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 212983,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-05\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-09\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-02 11:44:10\",\n            \"updated_at\": \"2023-06-02 11:44:10\",\n            \"approval\": {\n                \"id\": 198178,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 212983,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-16 00:00:04\",\n                \"created_at\": \"2023-06-02 11:44:10\",\n                \"updated_at\": \"2023-06-16 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 214487,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-06-19 10:50:57\",\n            \"updated_at\": \"2023-06-19 10:50:57\",\n            \"approval\": {\n                \"id\": 203643,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 214487,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-06-27 10:21:54\",\n                \"created_at\": \"2023-06-19 10:50:57\",\n                \"updated_at\": \"2023-06-27 10:21:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216044,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-10 07:31:44\",\n            \"updated_at\": \"2023-07-10 07:31:44\",\n            \"approval\": {\n                \"id\": 212048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216044,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-24 00:00:04\",\n                \"created_at\": \"2023-07-10 07:31:44\",\n                \"updated_at\": \"2023-07-24 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216941,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-21\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-21 12:31:36\",\n            \"updated_at\": \"2023-07-21 12:31:36\",\n            \"approval\": {\n                \"id\": 215869,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216941,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-08-04 00:00:04\",\n                \"created_at\": \"2023-07-21 12:31:36\",\n                \"updated_at\": \"2023-08-04 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 216305,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-07-24\",\n            \"start_time\": null,\n            \"end_date\": \"2023-07-28\",\n            \"end_time\": null,\n            \"created_at\": \"2023-07-12 14:11:34\",\n            \"updated_at\": \"2023-07-12 14:11:34\",\n            \"approval\": {\n                \"id\": 213215,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 216305,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-07-12 14:11:38\",\n                \"created_at\": \"2023-07-12 14:11:34\",\n                \"updated_at\": \"2023-07-12 14:11:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 219061,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 193188,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-08-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-08-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-08-25 08:41:46\",\n            \"updated_at\": \"2023-08-25 08:41:46\",\n            \"approval\": {\n                \"id\": 226086,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 219061,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-01 11:11:59\",\n                \"created_at\": \"2023-08-25 08:41:46\",\n                \"updated_at\": \"2023-11-01 11:11:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233018,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2023-09-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-17\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-08 08:24:56\",\n            \"updated_at\": \"2024-01-19 14:28:17\",\n            \"approval\": {\n                \"id\": 280187,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 233018,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-19 14:28:22\",\n                \"created_at\": \"2024-01-08 08:24:56\",\n                \"updated_at\": \"2024-01-19 14:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221198,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-15\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-15\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-15 12:58:37\",\n            \"updated_at\": \"2023-09-15 12:58:37\",\n            \"approval\": {\n                \"id\": 234343,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221198,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-29 00:00:05\",\n                \"created_at\": \"2023-09-15 12:58:37\",\n                \"updated_at\": \"2023-09-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221307,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-21\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-18 10:12:41\",\n            \"updated_at\": \"2023-09-18 10:12:41\",\n            \"approval\": {\n                \"id\": 234797,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221307,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-09-18 10:13:10\",\n                \"created_at\": \"2023-09-18 10:12:41\",\n                \"updated_at\": \"2023-09-18 10:13:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 221739,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-22\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-22 09:10:24\",\n            \"updated_at\": \"2023-09-22 09:10:24\",\n            \"approval\": {\n                \"id\": 236692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221739,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-06 00:00:05\",\n                \"created_at\": \"2023-09-22 09:10:24\",\n                \"updated_at\": \"2023-10-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 221853,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-25\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-25 09:48:04\",\n            \"updated_at\": \"2023-09-25 09:48:04\",\n            \"approval\": {\n                \"id\": 237220,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 221853,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-09 00:00:06\",\n                \"created_at\": \"2023-09-25 09:48:04\",\n                \"updated_at\": \"2023-10-09 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 222389,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-09-29\",\n            \"start_time\": null,\n            \"end_date\": \"2023-09-29\",\n            \"end_time\": null,\n            \"created_at\": \"2023-09-29 11:21:19\",\n            \"updated_at\": \"2023-09-29 11:21:19\",\n            \"approval\": {\n                \"id\": 239239,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 222389,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-13 00:00:05\",\n                \"created_at\": \"2023-09-29 11:21:19\",\n                \"updated_at\": \"2023-10-13 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 224376,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-16\",\n            \"start_time\": null,\n            \"end_date\": \"2023-10-16\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-16 09:38:16\",\n            \"updated_at\": \"2023-10-16 09:38:16\",\n            \"approval\": {\n                \"id\": 246156,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 224376,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-30 00:00:05\",\n                \"created_at\": \"2023-10-16 09:38:16\",\n                \"updated_at\": \"2023-10-30 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 225855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-10-31\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-10-31 10:00:46\",\n            \"updated_at\": \"2023-10-31 10:00:46\",\n            \"approval\": {\n                \"id\": 251894,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 225855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-10-31 10:00:49\",\n                \"created_at\": \"2023-10-31 10:00:46\",\n                \"updated_at\": \"2023-10-31 10:00:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226557,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"Lang weekend weg met gezin\",\n            \"start_date\": \"2023-11-09\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-13\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:40:00\",\n            \"updated_at\": \"2023-11-07 08:49:31\",\n            \"approval\": {\n                \"id\": 255010,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 226557,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-07 09:00:22\",\n                \"created_at\": \"2023-11-07 08:40:00\",\n                \"updated_at\": \"2023-11-07 09:00:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227435,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-14\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-17\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-14 11:35:15\",\n            \"updated_at\": \"2023-11-14 11:35:15\",\n            \"approval\": {\n                \"id\": 257858,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 227435,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-14 11:35:20\",\n                \"created_at\": \"2023-11-14 11:35:15\",\n                \"updated_at\": \"2023-11-14 11:35:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227658,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-23\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-30\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-16 10:16:43\",\n            \"updated_at\": \"2023-11-16 10:16:43\",\n            \"approval\": {\n                \"id\": 258821,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 227658,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-30 00:00:04\",\n                \"created_at\": \"2023-11-16 10:16:43\",\n                \"updated_at\": \"2023-11-30 00:00:04\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 228261,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-27\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-03\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-22 09:42:12\",\n            \"updated_at\": \"2023-11-22 09:42:12\",\n            \"approval\": {\n                \"id\": 260903,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 228261,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-06 00:00:05\",\n                \"created_at\": \"2023-11-22 09:42:12\",\n                \"updated_at\": \"2023-12-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 227550,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"29.42\",\n            \"reason\": \"Ski vakantie\",\n            \"start_date\": \"2023-11-30\",\n            \"start_time\": \"12:35\",\n            \"end_date\": \"2023-12-07\",\n            \"end_time\": \"10:00\",\n            \"created_at\": \"2023-11-15 10:37:10\",\n            \"updated_at\": \"2023-11-15 10:37:10\",\n            \"approval\": {\n                \"id\": 258393,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 227550,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"rejected\",\n                \"comments\": \"Graag andere week ivm vakantie rest van het team\",\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-15 10:38:52\",\n                \"created_at\": \"2023-11-15 10:37:10\",\n                \"updated_at\": \"2023-11-15 10:38:52\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 229436,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-08\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2023-12-12\",\n            \"end_time\": \"14:00\",\n            \"created_at\": \"2023-12-04 09:52:03\",\n            \"updated_at\": \"2023-12-04 11:45:07\",\n            \"approval\": {\n                \"id\": 266069,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 229436,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-12-18 00:00:07\",\n                \"created_at\": \"2023-12-04 09:52:03\",\n                \"updated_at\": \"2023-12-18 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231027,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-18\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-22\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:01:49\",\n            \"updated_at\": \"2023-12-18 10:01:49\",\n            \"approval\": {\n                \"id\": 272214,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 231027,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:08\",\n                \"created_at\": \"2023-12-18 10:01:49\",\n                \"updated_at\": \"2024-01-01 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 226555,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"Skivakantie\",\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-01\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-07 08:38:16\",\n            \"updated_at\": \"2023-11-07 08:38:16\",\n            \"approval\": {\n                \"id\": 255008,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 226555,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2023-11-21 00:00:05\",\n                \"created_at\": \"2023-11-07 08:38:16\",\n                \"updated_at\": \"2023-11-21 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 231028,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-12-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-05\",\n            \"end_time\": null,\n            \"created_at\": \"2023-12-18 10:02:17\",\n            \"updated_at\": \"2023-12-18 10:02:17\",\n            \"approval\": {\n                \"id\": 272215,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 231028,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-01 00:00:09\",\n                \"created_at\": \"2023-12-18 10:02:17\",\n                \"updated_at\": \"2024-01-01 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 232281,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"160.00\",\n            \"reason\": \"Wintersport\",\n            \"start_date\": \"2024-01-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-02 11:57:58\",\n            \"updated_at\": \"2024-01-08 08:25:36\",\n            \"approval\": {\n                \"id\": 277252,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 232281,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-08 08:25:38\",\n                \"created_at\": \"2024-01-02 11:57:58\",\n                \"updated_at\": \"2024-01-08 08:25:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 233565,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"88.00\",\n            \"reason\": \"Wispo\",\n            \"start_date\": \"2024-01-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-09 09:54:16\",\n            \"updated_at\": \"2024-01-09 09:54:16\",\n            \"approval\": {\n                \"id\": 281330,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 233565,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-01-23 00:00:05\",\n                \"created_at\": \"2024-01-09 09:54:16\",\n                \"updated_at\": \"2024-01-23 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 236090,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-01-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-01-23 12:43:38\",\n            \"updated_at\": \"2024-01-23 12:43:38\",\n            \"approval\": {\n                \"id\": 289590,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 236090,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-01 08:57:14\",\n                \"created_at\": \"2024-01-23 12:43:38\",\n                \"updated_at\": \"2024-02-01 08:57:14\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"120.00\",\n            \"reason\": \"wispo\",\n            \"start_date\": \"2024-02-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 08:59:15\",\n            \"updated_at\": \"2024-02-02 08:59:15\",\n            \"approval\": {\n                \"id\": 296759,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 237722,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-02 15:15:49\",\n                \"created_at\": \"2024-02-02 08:59:15\",\n                \"updated_at\": \"2024-02-02 15:15:49\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237724,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:01:04\",\n            \"updated_at\": \"2024-02-02 09:01:04\",\n            \"approval\": {\n                \"id\": 296761,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 237724,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:07\",\n                \"created_at\": \"2024-02-02 09:01:04\",\n                \"updated_at\": \"2024-02-16 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 237723,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-02-21\",\n            \"end_time\": null,\n            \"created_at\": \"2024-02-02 09:00:32\",\n            \"updated_at\": \"2024-02-02 09:00:32\",\n            \"approval\": {\n                \"id\": 296760,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 237723,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-16 00:00:06\",\n                \"created_at\": \"2024-02-02 09:00:32\",\n                \"updated_at\": \"2024-02-16 00:00:06\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 239730,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-15\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-02-17\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-02-15 09:25:36\",\n            \"updated_at\": \"2024-02-15 09:25:36\",\n            \"approval\": {\n                \"id\": 305251,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 239730,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-02-29 00:00:05\",\n                \"created_at\": \"2024-02-15 09:25:36\",\n                \"updated_at\": \"2024-02-29 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 240718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"80.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-02-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": \"16:00\",\n            \"created_at\": \"2024-02-22 10:10:07\",\n            \"updated_at\": \"2024-02-22 10:10:07\",\n            \"approval\": {\n                \"id\": 309128,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 240718,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-06 09:16:56\",\n                \"created_at\": \"2024-02-22 10:10:07\",\n                \"updated_at\": \"2024-03-06 09:16:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 241964,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-09\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-04 08:12:31\",\n            \"updated_at\": \"2024-03-04 08:12:31\",\n            \"approval\": {\n                \"id\": 315469,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 241964,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-04 08:12:33\",\n                \"created_at\": \"2024-03-04 08:12:31\",\n                \"updated_at\": \"2024-03-04 08:12:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242628,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-03-07\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-11\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-03-07 09:27:23\",\n            \"updated_at\": \"2024-03-07 09:27:23\",\n            \"approval\": {\n                \"id\": 318692,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242628,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-07 09:27:44\",\n                \"created_at\": \"2024-03-07 09:27:23\",\n                \"updated_at\": \"2024-03-07 09:27:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243183,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-15\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-11 14:43:29\",\n            \"updated_at\": \"2024-03-11 14:43:29\",\n            \"approval\": {\n                \"id\": 321174,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 243183,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-11 14:43:44\",\n                \"created_at\": \"2024-03-11 14:43:29\",\n                \"updated_at\": \"2024-03-11 14:43:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 243676,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-13 16:11:43\",\n            \"updated_at\": \"2024-03-13 16:11:43\",\n            \"approval\": {\n                \"id\": 323295,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 243676,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 00:00:05\",\n                \"created_at\": \"2024-03-13 16:11:43\",\n                \"updated_at\": \"2024-03-27 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 244168,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-18 08:37:48\",\n            \"updated_at\": \"2024-03-18 08:37:48\",\n            \"approval\": {\n                \"id\": 325872,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 244168,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-18 08:37:54\",\n                \"created_at\": \"2024-03-18 08:37:48\",\n                \"updated_at\": \"2024-03-18 08:37:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 242706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-07 13:57:20\",\n            \"updated_at\": \"2024-03-07 13:57:20\",\n            \"approval\": {\n                \"id\": 318993,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 242706,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:49:48\",\n                \"created_at\": \"2024-03-07 13:57:20\",\n                \"updated_at\": \"2024-03-25 12:49:48\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 245564,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-25 12:50:20\",\n            \"updated_at\": \"2024-03-25 12:50:20\",\n            \"approval\": {\n                \"id\": 330841,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 245564,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-25 12:50:28\",\n                \"created_at\": \"2024-03-25 12:50:20\",\n                \"updated_at\": \"2024-03-25 12:50:28\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245813,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-26\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:42:07\",\n            \"updated_at\": \"2024-03-26 13:42:07\",\n            \"approval\": {\n                \"id\": 331804,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245813,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-26 13:42:11\",\n                \"created_at\": \"2024-03-26 13:42:07\",\n                \"updated_at\": \"2024-03-26 13:42:11\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245883,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-03-27\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-27 08:25:04\",\n            \"updated_at\": \"2024-03-27 08:25:04\",\n            \"approval\": {\n                \"id\": 332177,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 245883,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-03-27 08:25:08\",\n                \"created_at\": \"2024-03-27 08:25:04\",\n                \"updated_at\": \"2024-03-27 08:25:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245737,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Goede Vrijdag\",\n            \"start_date\": \"2024-03-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-03-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 09:43:02\",\n            \"updated_at\": \"2024-03-26 09:43:02\",\n            \"approval\": {\n                \"id\": 331561,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 245737,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-09 00:00:05\",\n                \"created_at\": \"2024-03-26 09:43:02\",\n                \"updated_at\": \"2024-04-09 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 245812,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-03-26 13:41:31\",\n            \"updated_at\": \"2024-04-02 15:27:51\",\n            \"approval\": {\n                \"id\": 331803,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 245812,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-02 15:28:22\",\n                \"created_at\": \"2024-03-26 13:41:31\",\n                \"updated_at\": \"2024-04-02 15:28:22\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247497,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-08\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-08 07:57:21\",\n            \"updated_at\": \"2024-04-08 07:57:21\",\n            \"approval\": {\n                \"id\": 340443,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247497,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-08 07:57:23\",\n                \"created_at\": \"2024-04-08 07:57:21\",\n                \"updated_at\": \"2024-04-08 07:57:23\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 248287,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-12 08:04:30\",\n            \"updated_at\": \"2024-04-12 08:04:30\",\n            \"approval\": {\n                \"id\": 344053,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 248287,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-12 08:04:33\",\n                \"created_at\": \"2024-04-12 08:04:30\",\n                \"updated_at\": \"2024-04-12 08:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 247091,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-04 12:22:36\",\n            \"updated_at\": \"2024-04-15 07:50:53\",\n            \"approval\": {\n                \"id\": 338597,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 247091,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-15 07:50:55\",\n                \"created_at\": \"2024-04-04 12:22:36\",\n                \"updated_at\": \"2024-04-15 07:50:55\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249894,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-22\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-22 12:43:23\",\n            \"updated_at\": \"2024-04-22 12:43:23\",\n            \"approval\": {\n                \"id\": 350377,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249894,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 00:00:05\",\n                \"created_at\": \"2024-04-22 12:43:23\",\n                \"updated_at\": \"2024-05-06 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249343,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-04-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:23:47\",\n            \"updated_at\": \"2024-04-18 11:23:47\",\n            \"approval\": {\n                \"id\": 348134,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 249343,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-18 11:23:53\",\n                \"created_at\": \"2024-04-18 11:23:47\",\n                \"updated_at\": \"2024-04-18 11:23:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 249345,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-04-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-18 11:24:09\",\n            \"updated_at\": \"2024-04-25 11:59:59\",\n            \"approval\": {\n                \"id\": 348136,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 249345,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-25 12:00:02\",\n                \"created_at\": \"2024-04-18 11:24:09\",\n                \"updated_at\": \"2024-04-25 12:00:02\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251414,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-05-01\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-05-06\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-05-01 11:14:35\",\n            \"updated_at\": \"2024-05-01 11:14:35\",\n            \"approval\": {\n                \"id\": 357345,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251414,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-02 13:17:15\",\n                \"created_at\": \"2024-05-01 11:14:35\",\n                \"updated_at\": \"2024-05-02 13:17:15\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251131,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-03\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:39:53\",\n            \"updated_at\": \"2024-04-30 07:39:53\",\n            \"approval\": {\n                \"id\": 355572,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 251131,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:39:56\",\n                \"created_at\": \"2024-04-30 07:39:53\",\n                \"updated_at\": \"2024-04-30 07:39:56\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251134,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-09\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-10\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:40:54\",\n            \"updated_at\": \"2024-04-30 07:40:54\",\n            \"approval\": {\n                \"id\": 355577,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 251134,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:40:57\",\n                \"created_at\": \"2024-04-30 07:40:54\",\n                \"updated_at\": \"2024-04-30 07:40:57\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 251136,\n            \"organization_id\": 14799,\n            \"employee_id\": 138751,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-13\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-30 07:42:03\",\n            \"updated_at\": \"2024-04-30 07:42:03\",\n            \"approval\": {\n                \"id\": 355583,\n                \"organization_id\": 14799,\n                \"employee_id\": 138751,\n                \"expense_id\": null,\n                \"leave_request_id\": 251136,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-04-30 07:42:07\",\n                \"created_at\": \"2024-04-30 07:42:03\",\n                \"updated_at\": \"2024-04-30 07:42:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253612,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-14\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:08:35\",\n            \"updated_at\": \"2024-05-15 12:08:35\",\n            \"approval\": {\n                \"id\": 366223,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 253612,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-15 12:08:45\",\n                \"created_at\": \"2024-05-15 12:08:35\",\n                \"updated_at\": \"2024-05-15 12:08:45\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253613,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-22\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-15 12:09:38\",\n            \"updated_at\": \"2024-05-15 12:09:38\",\n            \"approval\": {\n                \"id\": 366225,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 253613,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-29 00:00:07\",\n                \"created_at\": \"2024-05-15 12:09:38\",\n                \"updated_at\": \"2024-05-29 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 253819,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191307,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-16 11:21:06\",\n            \"updated_at\": \"2024-05-16 11:21:06\",\n            \"approval\": {\n                \"id\": 366921,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 253819,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 145942,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-16 11:21:08\",\n                \"created_at\": \"2024-05-16 11:21:06\",\n                \"updated_at\": \"2024-05-16 11:21:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 250639,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-21\",\n            \"start_time\": null,\n            \"end_date\": \"2024-05-24\",\n            \"end_time\": null,\n            \"created_at\": \"2024-04-26 08:50:58\",\n            \"updated_at\": \"2024-05-06 08:00:36\",\n            \"approval\": {\n                \"id\": 353507,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 250639,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-05-06 08:00:39\",\n                \"created_at\": \"2024-04-26 08:50:58\",\n                \"updated_at\": \"2024-05-06 08:00:39\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 255715,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-05-30\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-04\",\n            \"end_time\": null,\n            \"created_at\": \"2024-05-30 10:45:10\",\n            \"updated_at\": \"2024-05-30 10:45:10\",\n            \"approval\": {\n                \"id\": 375237,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 255715,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 09:00:41\",\n                \"created_at\": \"2024-05-30 10:45:10\",\n                \"updated_at\": \"2024-06-10 09:00:41\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 256926,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-07\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-07 14:21:28\",\n            \"updated_at\": \"2024-06-07 14:21:28\",\n            \"approval\": {\n                \"id\": 382306,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 256926,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-07 14:21:32\",\n                \"created_at\": \"2024-06-07 14:21:28\",\n                \"updated_at\": \"2024-06-07 14:21:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257084,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-14\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:34:38\",\n            \"updated_at\": \"2024-06-10 07:34:48\",\n            \"approval\": {\n                \"id\": 383048,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257084,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:34:59\",\n                \"created_at\": \"2024-06-10 07:34:38\",\n                \"updated_at\": \"2024-06-10 07:34:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257474,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-11 13:23:11\",\n            \"updated_at\": \"2024-06-11 13:23:11\",\n            \"approval\": {\n                \"id\": 384784,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 257474,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-19 08:19:42\",\n                \"created_at\": \"2024-06-11 13:23:11\",\n                \"updated_at\": \"2024-06-19 08:19:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258138,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": \"midweekje met de vrouw\",\n            \"start_date\": \"2024-06-18\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-20\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-17 09:17:50\",\n            \"updated_at\": \"2024-06-17 09:17:50\",\n            \"approval\": {\n                \"id\": 388429,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 258138,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-17 09:18:25\",\n                \"created_at\": \"2024-06-17 09:17:50\",\n                \"updated_at\": \"2024-06-17 09:18:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 257086,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-06-26\",\n            \"start_time\": null,\n            \"end_date\": \"2024-06-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-10 07:35:23\",\n            \"updated_at\": \"2024-06-10 07:35:23\",\n            \"approval\": {\n                \"id\": 383050,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 257086,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-10 07:35:26\",\n                \"created_at\": \"2024-06-10 07:35:23\",\n                \"updated_at\": \"2024-06-10 07:35:26\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259520,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:11\",\n            \"updated_at\": \"2024-06-25 07:34:11\",\n            \"approval\": {\n                \"id\": 394199,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259520,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-06-25 07:34:16\",\n                \"created_at\": \"2024-06-25 07:34:11\",\n                \"updated_at\": \"2024-06-25 07:34:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259524,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-01\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 07:34:35\",\n            \"updated_at\": \"2024-06-25 07:34:35\",\n            \"approval\": {\n                \"id\": 394203,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 259524,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144101,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 12:05:40\",\n                \"created_at\": \"2024-06-25 07:34:35\",\n                \"updated_at\": \"2024-07-05 12:05:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 259373,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"12.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-24 13:39:40\",\n            \"updated_at\": \"2024-07-02 09:26:16\",\n            \"approval\": {\n                \"id\": 393668,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 259373,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-08 00:00:05\",\n                \"created_at\": \"2024-06-24 13:39:40\",\n                \"updated_at\": \"2024-07-08 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 259685,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-25 11:27:15\",\n            \"updated_at\": \"2024-07-02 09:25:42\",\n            \"approval\": {\n                \"id\": 394542,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 259685,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 00:00:08\",\n                \"created_at\": \"2024-06-25 11:27:15\",\n                \"updated_at\": \"2024-07-09 00:00:08\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262245,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191301,\n            \"hours\": \"96.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-04\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-31\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:50:07\",\n            \"updated_at\": \"2024-07-09 11:50:07\",\n            \"approval\": {\n                \"id\": 405825,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 262245,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:50:10\",\n                \"created_at\": \"2024-07-09 11:50:07\",\n                \"updated_at\": \"2024-07-09 11:50:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262244,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-10\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:49:21\",\n            \"updated_at\": \"2024-07-09 11:49:21\",\n            \"approval\": {\n                \"id\": 405824,\n                \"organization_id\": 14799,\n                \"employee_id\": 138752,\n                \"expense_id\": null,\n                \"leave_request_id\": 262244,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 12:28:17\",\n                \"created_at\": \"2024-07-09 11:49:21\",\n                \"updated_at\": \"2024-07-09 12:28:17\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 261664,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-05 10:35:54\",\n            \"updated_at\": \"2024-07-05 10:35:54\",\n            \"approval\": {\n                \"id\": 403271,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 261664,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-05 10:36:03\",\n                \"created_at\": \"2024-07-05 10:35:54\",\n                \"updated_at\": \"2024-07-05 10:36:03\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 258953,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191305,\n            \"hours\": \"72.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-15\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-06-21 09:37:28\",\n            \"updated_at\": \"2024-06-21 09:37:28\",\n            \"approval\": {\n                \"id\": 392094,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 258953,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 07:33:18\",\n                \"created_at\": \"2024-06-21 09:37:28\",\n                \"updated_at\": \"2024-07-24 07:33:18\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262541,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-07-17\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-19\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-11 10:06:32\",\n            \"updated_at\": \"2024-07-11 10:06:32\",\n            \"approval\": {\n                \"id\": 407080,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262541,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-25 00:00:05\",\n                \"created_at\": \"2024-07-11 10:06:32\",\n                \"updated_at\": \"2024-07-25 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 262246,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"48.00\",\n            \"reason\": \"Vakantie\",\n            \"start_date\": \"2024-07-23\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-30\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-09 11:51:35\",\n            \"updated_at\": \"2024-07-09 11:51:35\",\n            \"approval\": {\n                \"id\": 405826,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 262246,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-09 11:51:40\",\n                \"created_at\": \"2024-07-09 11:51:35\",\n                \"updated_at\": \"2024-07-09 11:51:40\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 265119,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"Huwelijk\",\n            \"start_date\": \"2024-07-29\",\n            \"start_time\": null,\n            \"end_date\": \"2024-07-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-29 13:56:24\",\n            \"updated_at\": \"2024-07-29 13:56:24\",\n            \"approval\": {\n                \"id\": 417658,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 265119,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 00:00:05\",\n                \"created_at\": \"2024-07-29 13:56:24\",\n                \"updated_at\": \"2024-08-12 00:00:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 264647,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-26 07:35:14\",\n            \"updated_at\": \"2024-08-05 10:59:13\",\n            \"approval\": {\n                \"id\": 416162,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 264647,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 10:59:16\",\n                \"created_at\": \"2024-07-26 07:35:14\",\n                \"updated_at\": \"2024-08-05 10:59:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 266319,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-07\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-05 10:59:54\",\n            \"updated_at\": \"2024-08-05 10:59:54\",\n            \"approval\": {\n                \"id\": 423012,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 266319,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-05 11:01:01\",\n                \"created_at\": \"2024-08-05 10:59:54\",\n                \"updated_at\": \"2024-08-05 11:01:01\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267428,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-12\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:32:21\",\n            \"updated_at\": \"2024-08-12 10:32:21\",\n            \"approval\": {\n                \"id\": 426493,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 267428,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-14 09:53:53\",\n                \"created_at\": \"2024-08-12 10:32:21\",\n                \"updated_at\": \"2024-08-14 09:53:53\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 267427,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"16.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-16\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-12 10:31:56\",\n            \"updated_at\": \"2024-08-12 10:31:56\",\n            \"approval\": {\n                \"id\": 426492,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 267427,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-08-12 10:32:05\",\n                \"created_at\": \"2024-08-12 10:31:56\",\n                \"updated_at\": \"2024-08-12 10:32:05\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268249,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-23\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-19 11:17:46\",\n            \"updated_at\": \"2024-08-19 11:17:46\",\n            \"approval\": {\n                \"id\": 429949,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 268249,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-02 00:00:07\",\n                \"created_at\": \"2024-08-19 11:17:46\",\n                \"updated_at\": \"2024-09-02 00:00:07\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 263904,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"64.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-20\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-29\",\n            \"end_time\": null,\n            \"created_at\": \"2024-07-19 07:35:04\",\n            \"updated_at\": \"2024-07-19 07:35:04\",\n            \"approval\": {\n                \"id\": 412359,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 263904,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-07-24 08:16:32\",\n                \"created_at\": \"2024-07-19 07:35:04\",\n                \"updated_at\": \"2024-07-24 08:16:32\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 269483,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-08-28\",\n            \"start_time\": null,\n            \"end_date\": \"2024-08-28\",\n            \"end_time\": null,\n            \"created_at\": \"2024-08-27 11:50:24\",\n            \"updated_at\": \"2024-08-27 11:50:24\",\n            \"approval\": {\n                \"id\": 435303,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 269483,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-10 00:00:09\",\n                \"created_at\": \"2024-08-27 11:50:24\",\n                \"updated_at\": \"2024-09-10 00:00:09\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 268855,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"52.00\",\n            \"reason\": \"Weekje Spanje\",\n            \"start_date\": \"2024-08-31\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-08-22 13:11:35\",\n            \"updated_at\": \"2024-09-01 16:15:05\",\n            \"approval\": {\n                \"id\": 432189,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 268855,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2024-09-01 16:15:10\",\n                \"created_at\": \"2024-08-22 13:11:35\",\n                \"updated_at\": \"2024-09-01 16:15:10\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270622,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"4.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-05\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-04 09:56:20\",\n            \"updated_at\": \"2024-09-04 09:56:20\",\n            \"approval\": {\n                \"id\": 444256,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270622,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:29\",\n                \"created_at\": \"2024-09-04 09:56:20\",\n                \"updated_at\": \"2024-09-11 13:10:29\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 270768,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-05\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-12\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-05 08:30:19\",\n            \"updated_at\": \"2024-09-05 08:30:19\",\n            \"approval\": {\n                \"id\": 445287,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 270768,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-11 13:10:59\",\n                \"created_at\": \"2024-09-05 08:30:19\",\n                \"updated_at\": \"2024-09-11 13:10:59\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 271887,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-11\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-11\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-12 12:26:40\",\n            \"updated_at\": \"2024-09-12 12:26:40\",\n            \"approval\": {\n                \"id\": 452856,\n                \"organization_id\": 14799,\n                \"employee_id\": 152166,\n                \"expense_id\": null,\n                \"leave_request_id\": 271887,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-12 12:27:20\",\n                \"created_at\": \"2024-09-12 12:26:40\",\n                \"updated_at\": \"2024-09-12 12:27:20\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272021,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"0.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-13\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-18\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-13 09:16:07\",\n            \"updated_at\": \"2024-09-13 09:16:07\",\n            \"approval\": {\n                \"id\": 453813,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 272021,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-13 11:49:42\",\n                \"created_at\": \"2024-09-13 09:16:07\",\n                \"updated_at\": \"2024-09-13 11:49:42\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 272935,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"leave_type_id\": 191301,\n            \"hours\": \"24.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-09-19\",\n            \"start_time\": null,\n            \"end_date\": \"2024-09-25\",\n            \"end_time\": null,\n            \"created_at\": \"2024-09-19 07:50:50\",\n            \"updated_at\": \"2024-09-19 07:50:50\",\n            \"approval\": {\n                \"id\": 459293,\n                \"organization_id\": 14799,\n                \"employee_id\": 138750,\n                \"expense_id\": null,\n                \"leave_request_id\": 272935,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-19 07:50:54\",\n                \"created_at\": \"2024-09-19 07:50:50\",\n                \"updated_at\": \"2024-09-19 07:50:54\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273831,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"13.02\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-25\",\n            \"start_time\": \"09:14\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"10:15\",\n            \"created_at\": \"2024-09-25 08:19:43\",\n            \"updated_at\": \"2024-09-25 08:19:43\",\n            \"approval\": {\n                \"id\": 464718,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 273831,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-25 08:19:43\",\n                \"created_at\": \"2024-09-25 08:19:43\",\n                \"updated_at\": \"2024-09-25 08:19:43\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 274057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"hours\": \"28.00\",\n            \"reason\": \"weekend weg\",\n            \"start_date\": \"2024-09-26\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-03\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-26 09:43:50\",\n            \"updated_at\": \"2024-09-26 09:43:50\",\n            \"approval\": {\n                \"id\": 466280,\n                \"organization_id\": 14799,\n                \"employee_id\": 138745,\n                \"expense_id\": null,\n                \"leave_request_id\": 274057,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144103,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-26 12:04:33\",\n                \"created_at\": \"2024-09-26 09:43:50\",\n                \"updated_at\": \"2024-09-26 12:04:33\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 273719,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"8.00\",\n            \"reason\": \"weekendje weg\",\n            \"start_date\": \"2024-09-27\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-30\",\n            \"end_time\": \"09:00\",\n            \"created_at\": \"2024-09-24 12:14:25\",\n            \"updated_at\": \"2024-09-24 12:14:25\",\n            \"approval\": {\n                \"id\": 463911,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 273719,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": null,\n                \"status\": \"pending\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-09-24 12:14:25\",\n                \"created_at\": \"2024-09-24 12:14:25\",\n                \"updated_at\": \"2024-09-24 12:14:25\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 275695,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"32.00\",\n            \"reason\": \"lang weekend weg\",\n            \"start_date\": \"2024-10-10\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-10-15\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-07 09:22:20\",\n            \"updated_at\": \"2024-10-08 07:41:39\",\n            \"approval\": {\n                \"id\": 478491,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 275695,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:41:44\",\n                \"created_at\": \"2024-10-07 09:22:20\",\n                \"updated_at\": \"2024-10-08 07:41:44\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 275876,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"leave_type_id\": 191304,\n            \"hours\": \"384.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-14\",\n            \"start_time\": null,\n            \"end_date\": \"2025-02-02\",\n            \"end_time\": null,\n            \"created_at\": \"2024-10-08 07:43:46\",\n            \"updated_at\": \"2024-10-08 07:43:46\",\n            \"approval\": {\n                \"id\": 479809,\n                \"organization_id\": 14799,\n                \"employee_id\": 138748,\n                \"expense_id\": null,\n                \"leave_request_id\": 275876,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-08 07:44:16\",\n                \"created_at\": \"2024-10-08 07:43:46\",\n                \"updated_at\": \"2024-10-08 07:44:16\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        },\n        {\n            \"id\": 274862,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"hours\": \"19.00\",\n            \"reason\": null,\n            \"start_date\": \"2024-10-23\",\n            \"start_time\": \"14:00\",\n            \"end_date\": \"2024-10-27\",\n            \"end_time\": \"17:00\",\n            \"created_at\": \"2024-10-01 12:48:35\",\n            \"updated_at\": \"2024-10-21 08:21:27\",\n            \"approval\": {\n                \"id\": 472584,\n                \"organization_id\": 14799,\n                \"employee_id\": 138749,\n                \"expense_id\": null,\n                \"leave_request_id\": 274862,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 144406,\n                \"status\": \"approved\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": true,\n                \"status_changed_at\": \"2024-10-21 08:21:38\",\n                \"created_at\": \"2024-10-01 12:48:35\",\n                \"updated_at\": \"2024-10-21 08:21:38\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\"\n            ]\n        }\n    ]\n}"},{"id":"c461990e-eb59-437c-adb8-82abb614b274","name":"Leave request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/leave-registrations?limit=3","host":["https://api.buddee.nl"],"path":["leave-registrations"],"query":[{"key":"employee_id","value":"","description":"Filters by leave_requests.employee_id","disabled":true},{"key":"leave_type_id","value":"","description":"Filters by leave_requests.leave_type_id","disabled":true},{"key":"leave_request_id","value":null,"type":"text","disabled":true},{"key":"leave_balance_id","value":null,"type":"text","disabled":true},{"key":"active_in_period","value":" ","disabled":true},{"key":"approval_status","value":"","disabled":true},{"key":"limit","value":"3","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Dec 2024 09:46:17 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 352,\n        \"page\": 1,\n        \"per_page\": 3,\n        \"total_pages\": 118\n    },\n    \"data\": [\n        {\n            \"id\": 125107,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"leave_type_id\": 191301,\n            \"leave_balance_id\": 180341,\n            \"leave_request_id\": null,\n            \"hours\": \"40.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-03-01\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2021-03-07\",\n            \"end_time\": \"17:00\",\n            \"is_excluded\": false,\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2021-04-20 07:33:21\",\n            \"updated_at\": \"2021-04-20 07:33:21\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 125206,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"leave_type_id\": 191301,\n            \"leave_balance_id\": 180253,\n            \"leave_request_id\": null,\n            \"hours\": \"19.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-05-03\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2021-05-06\",\n            \"end_time\": \"12:00\",\n            \"is_excluded\": false,\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2021-05-03 07:35:43\",\n            \"updated_at\": \"2021-05-03 07:35:43\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 125472,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"leave_type_id\": 191301,\n            \"leave_balance_id\": 180407,\n            \"leave_request_id\": null,\n            \"hours\": \"32.00\",\n            \"reason\": null,\n            \"start_date\": \"2021-06-01\",\n            \"start_time\": null,\n            \"end_date\": \"2021-06-04\",\n            \"end_time\": null,\n            \"is_excluded\": false,\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2021-06-01 07:53:04\",\n            \"updated_at\": \"2021-06-01 07:53:04\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"adbff09c-101a-4638-92aa-8977ca106e28"},{"name":"Create leave registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"14c5dfc7-2def-47c3-a002-3d811d4c3803"}}],"id":"1cc75be8-68ce-4ae8-b9cb-fab4c781dd5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 139021,\n    \"leave_type_id\": 191768,\n    \"leave_balance_id\": 186107,\n    \"hours\": 5,\n    \"reason\": \"Chilling\",\n    \"start_date\": \"2024-12-11\",\n    \"end_date\": \"2024-12-11\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-registrations","description":"<p>Create new leave registrations</p>\n","urlObject":{"path":["leave-registrations"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"7e79e814-2731-4231-9244-ca56f81ea0d7","name":"Leave request created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 139021,\n    \"leave_type_id\": 191768,\n    \"leave_balance_id\": 186107,\n    \"hours\": 5,\n    \"start_date\": \"2024-12-11\",\n    \"end_date\": \"2024-12-11\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-registrations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 11 Dec 2024 09:24:05 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 285975,\n        \"organization_id\": 14828,\n        \"employee_id\": 139021,\n        \"leave_type_id\": 191768,\n        \"leave_balance_id\": 186107,\n        \"leave_request_id\": null,\n        \"hours\": \"5.00\",\n        \"reason\": null,\n        \"start_date\": \"2024-12-11\",\n        \"start_time\": null,\n        \"end_date\": \"2024-12-11\",\n        \"end_time\": null,\n        \"is_excluded\": false,\n        \"is_processed\": false,\n        \"processed_at\": null,\n        \"created_at\": \"2024-12-11 09:24:05\",\n        \"updated_at\": \"2024-12-11 09:24:05\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"1cc75be8-68ce-4ae8-b9cb-fab4c781dd5d"},{"name":"Create leave registration Copy","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"aac6693c-f002-483c-9063-3122d66855e1"}}],"id":"cf50fab8-8d10-446c-b93c-c9d13adeef6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Chilling..\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-registrations/125107","description":"<p>Updates an existing leave registration</p>\n","urlObject":{"path":["leave-registrations","125107"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"40d78d2a-e397-46bf-be78-6e5a203e097e","name":"Update leave request","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"reason\": \"Chilling..\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-registrations/125107"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 11 Dec 2024 09:30:30 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 125107,\n        \"organization_id\": 14799,\n        \"employee_id\": 138749,\n        \"leave_type_id\": 191301,\n        \"leave_balance_id\": 180341,\n        \"leave_request_id\": null,\n        \"hours\": \"40.00\",\n        \"reason\": \"Chilling..\",\n        \"start_date\": \"2021-03-01\",\n        \"start_time\": \"09:00\",\n        \"end_date\": \"2021-03-07\",\n        \"end_time\": \"17:00\",\n        \"is_excluded\": false,\n        \"is_processed\": false,\n        \"processed_at\": null,\n        \"created_at\": \"2021-04-20 07:33:21\",\n        \"updated_at\": \"2024-12-11 09:30:30\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"cf50fab8-8d10-446c-b93c-c9d13adeef6d"},{"name":"Delete leave registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"8e1a5e71-79b2-4cbd-b071-a63604cd3d7c"}}],"id":"50eb1f08-3044-4acf-86f4-029e433788da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 139021,\n    \"leave_type_id\": 191768,\n    \"leave_balance_id\": 186107,\n    \"hours\": 5,\n    \"start_date\": \"2024-12-11\",\n    \"end_date\": \"2024-12-11\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-registrations/285975","description":"<p>Deletes a leave registration</p>\n","urlObject":{"path":["leave-registrations","285975"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"186378a1-c9eb-4631-8005-2414667515cb","name":"Deleted leave registration","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 139021,\n    \"leave_type_id\": 191768,\n    \"leave_balance_id\": 186107,\n    \"hours\": 5,\n    \"start_date\": \"2024-12-11\",\n    \"end_date\": \"2024-12-11\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-registrations/285975"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 11 Dec 2024 09:25:46 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"50eb1f08-3044-4acf-86f4-029e433788da"}],"id":"af67be82-4920-4c7d-831f-60b89366d650","description":"<p>Leave registrations are created after a leave request has been approved. Buddee calculates the requested amount of hours and uses the employees workschedule to determine how many hours off are taken from a leave balance.  </p>\n<p>However for situations where a leave request is not needed a registration can be directly created by doing a POST to the leave-registrations endpoint.</p>\n<h4 id=\"sortable-fields\">Sortable fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>start_date</code></td>\n<td>The start date of the leave</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>The end date of the leave</td>\n</tr>\n<tr>\n<td><code>employee</code></td>\n<td>The employee associated with the leave registration</td>\n</tr>\n<tr>\n<td><code>leave_balance</code></td>\n<td>The leave balance associated with the leave registration</td>\n</tr>\n<tr>\n<td><code>leave_type</code></td>\n<td>The type of leave (e.g., vacation, sick leave)</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"model\">Model</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Validation Rules</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>employee_id</code></td>\n<td>Integer</td>\n<td>Unique identifier for the employee</td>\n<td><code>required</code>, <code>uneditable</code>, <code>scoped_employee_id</code></td>\n<td>Cannot be modified, scoped to the employee.</td>\n</tr>\n<tr>\n<td><code>leave_type_id</code></td>\n<td>Integer</td>\n<td>Unique identifier for the leave type</td>\n<td><code>required</code>, <code>uneditable</code>, <code>ExistsRule::create(LeaveType::class)</code></td>\n<td>Cannot be modified, must exist</td>\n</tr>\n<tr>\n<td><code>leave_balance_id</code></td>\n<td>Integer</td>\n<td>Unique identifier for the leave balance</td>\n<td><code>nullable</code>, <code>uneditable</code></td>\n<td>Cannot be modified, nullable</td>\n</tr>\n<tr>\n<td><code>hours</code></td>\n<td>Integer (numeric)</td>\n<td>The number of hours taken for the leave</td>\n<td><code>required</code>, <code>numeric</code>, <code>between:0,2080</code></td>\n<td>Must be a number between 0 and 2080.</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td>Date</td>\n<td>The start date of the leave</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code></td>\n<td>Required, must follow the <code>Y-m-d</code> date format.</td>\n</tr>\n<tr>\n<td><code>start_time</code></td>\n<td>Time (nullable)</td>\n<td>The start time of the leave</td>\n<td><code>nullable</code>, <code>time</code></td>\n<td>Optional, must be a valid time format if provided.</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>Date</td>\n<td>The end date of the leave</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code>, <code>after_or_equal:start_date</code></td>\n<td>Required, must be after or equal to the <code>start_date</code>.</td>\n</tr>\n<tr>\n<td><code>end_time</code></td>\n<td>Time (nullable)</td>\n<td>The end time of the leave</td>\n<td><code>nullable</code>, <code>time</code></td>\n<td>Optional, must be a valid time format if provided.</td>\n</tr>\n<tr>\n<td><code>is_excluded</code></td>\n<td>Boolean</td>\n<td>Whether the leave is excluded from certain calculations</td>\n<td><code>required</code>, <code>boolean</code></td>\n<td>Required, must be a boolean value.</td>\n</tr>\n<tr>\n<td><code>is_processed</code></td>\n<td>Boolean</td>\n<td>Whether the leave has been processed</td>\n<td><code>required</code>, <code>boolean</code>, <code>object_permission:leave_registrations.attribute.is_processed</code></td>\n<td>Required, must be a boolean value, and permission-based validation.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"af67be82-4920-4c7d-831f-60b89366d650"},{"name":"Leave balance","item":[{"name":"Leave balances","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"189ad8d9-31d4-4db6-99fa-766a075694fc"}}],"id":"166fdc4a-5707-4bc3-a97b-141a1917e2e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/leave-balances?employee_id=138745&year=2022","description":"<p>Retrieve leave balances</p>\n","urlObject":{"path":["leave-balances"],"host":["https://api.buddee.nl"],"query":[{"description":{"content":"<p>Employee ID</p>\n","type":"text/plain"},"key":"employee_id","value":"138745"},{"disabled":true,"description":{"content":"<p>Get leave balances filtered by leave type</p>\n","type":"text/plain"},"key":"leave_type_id","value":""},{"disabled":true,"description":{"content":"<p>Retrieve leave balanced based on the amount of hours that have been received on a balance</p>\n","type":"text/plain"},"key":"hours_received","value":""},{"disabled":true,"description":{"content":"<p>Filter leave balances based on the amount of hours used</p>\n","type":"text/plain"},"key":"hours_used","value":""},{"disabled":true,"description":{"content":"<p>Filter leave balances based on the amount of hours remaining</p>\n","type":"text/plain"},"key":"hours_remaining","value":""},{"disabled":true,"description":{"content":"<p>Filter leave balances based on the expiration date</p>\n","type":"text/plain"},"key":"expiration_date","value":""},{"disabled":true,"key":"active","value":""},{"disabled":true,"key":"active_employee","value":""},{"disabled":true,"key":"employee_status","value":""},{"disabled":true,"key":"department_id","value":""},{"disabled":true,"key":"label_id","value":""},{"key":"year","value":"2022"}],"variable":[]}},"response":[],"_postman_id":"166fdc4a-5707-4bc3-a97b-141a1917e2e6"},{"name":"Create leave balance","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"e4cc9367-59f9-445f-a19b-43effd9824aa"}}],"id":"1096d2d0-9a5b-48d8-b494-d1643c05cc50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138745,\n    \"leave_type_id\": 191301,\n    \"start_date\": \"2024-01-01\",\n    \"end_date\": \"2024-12-31\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-balances","description":"<p>Create leave balances</p>\n","urlObject":{"path":["leave-balances"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"c3d0dac2-ce29-43da-8d85-add659e11482","name":"Leave balances created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138745,\n    \"leave_type_id\": 191301,\n    \"start_date\": \"2024-01-01\",\n    \"end_date\": \"2024-12-31\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.buddee.nl/leave-balances","host":["https://api.buddee.nl"],"path":["leave-balances"],"query":[{"key":"employee_id","value":"","description":"Filters by leave_requests.employee_id","disabled":true},{"key":"leave_type_id","value":"","description":"Filters by leave_requests.leave_type_id","disabled":true},{"key":"leave_request_id","value":null,"type":"text","disabled":true},{"key":"leave_balance_id","value":null,"type":"text","disabled":true},{"key":"active_in_period","value":" ","disabled":true},{"key":"approval_status","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 11 Dec 2024 13:07:39 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 767574,\n        \"organization_id\": 14799,\n        \"employee_id\": 138745,\n        \"leave_type_id\": 191301,\n        \"fulltime_hours\": \"38.00\",\n        \"hours_accruable\": \"160.00\",\n        \"hours_prorated\": \"0.00\",\n        \"hours_accrued\": \"0.00\",\n        \"hours_adjusted\": \"0.00\",\n        \"hours_received\": \"0.00\",\n        \"hours_used\": \"0.00\",\n        \"hours_remaining\": \"0.00\",\n        \"start_date\": \"2024-01-01\",\n        \"end_date\": \"2024-12-31\",\n        \"next_accrual_date\": null,\n        \"expiration_date\": \"2024-12-31\",\n        \"do_auto_calculate\": false,\n        \"do_touch\": true,\n        \"created_at\": \"2024-12-11 13:07:39\",\n        \"updated_at\": \"2024-12-11 13:07:39\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ],\n        \"days_received\": 0,\n        \"days_used\": 0,\n        \"days_remaining\": 0,\n        \"is_active\": false\n    }\n}"}],"_postman_id":"1096d2d0-9a5b-48d8-b494-d1643c05cc50"},{"name":"Update leave balance","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"ccc6c374-a111-4090-a288-3b5605c4cb8e"}}],"id":"a7a5e28f-6e43-4f98-9f9e-3cb3629b2ea2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"start_date\": \"2024-01-01\",\n    \"end_date\": \"2024-12-31\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-balances/767574","description":"<p>Updates leave balances</p>\n","urlObject":{"path":["leave-balances","767574"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"ece868a8-5491-48fd-9766-cfc5a6b57a85","name":"Update leave balance","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"start_date\": \"2024-01-01\",\n    \"end_date\": \"2024-12-31\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-balances/767574"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 11 Dec 2024 13:11:32 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 767574,\n        \"organization_id\": 14799,\n        \"employee_id\": 138745,\n        \"leave_type_id\": 191301,\n        \"fulltime_hours\": \"38.00\",\n        \"hours_accruable\": \"160.00\",\n        \"hours_prorated\": \"160.00\",\n        \"hours_accrued\": \"160.00\",\n        \"hours_adjusted\": \"0.00\",\n        \"hours_received\": \"160.00\",\n        \"hours_used\": \"0.00\",\n        \"hours_remaining\": \"160.00\",\n        \"start_date\": \"2024-01-01\",\n        \"end_date\": \"2024-12-31\",\n        \"next_accrual_date\": null,\n        \"expiration_date\": \"2024-12-31\",\n        \"do_auto_calculate\": false,\n        \"do_touch\": true,\n        \"created_at\": \"2024-12-11 13:07:39\",\n        \"updated_at\": \"2024-12-11 13:11:32\",\n        \"leave_type\": {\n            \"id\": 191301,\n            \"organization_id\": 14799,\n            \"company_id\": null,\n            \"name\": \"Wettelijke vakantiedagen (statutory holidays)\",\n            \"group_name\": \"Vakantie\",\n            \"type\": \"holiday\",\n            \"position\": 1,\n            \"carryover_months\": 0,\n            \"auto_approval_days\": 14,\n            \"employment_types\": [\n                \"employee\"\n            ],\n            \"work_schedule_types\": [\n                \"full-time\",\n                \"part-time\"\n            ],\n            \"is_prorated\": true,\n            \"created_at\": \"2021-04-19 12:39:15\",\n            \"updated_at\": \"2024-08-14 15:26:57\",\n            \"fixed_leave_type_accrual\": {\n                \"id\": 136647,\n                \"organization_id\": 14799,\n                \"leave_type_id\": 191301,\n                \"type\": \"fixed_hours\",\n                \"hours\": \"160.0000\",\n                \"max_hours_remaining\": null,\n                \"frequency\": null,\n                \"created_at\": \"2024-05-14 21:03:51\",\n                \"updated_at\": \"2024-05-14 21:03:51\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"is_yearly\": true\n        },\n        \"employee\": {\n            \"id\": 138745,\n            \"organization_id\": 14799,\n            \"company_id\": 14799,\n            \"job_id\": 203439,\n            \"department_id\": 155885,\n            \"location_id\": null,\n            \"buddy_id\": 138750,\n            \"manager_id\": 138750,\n            \"indirect_manager_id\": null,\n            \"hr_manager_id\": 138751,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"nmbrs_template_id\": null,\n            \"first_name\": \"Chantalle\",\n            \"initials\": \"C.H.\",\n            \"last_name\": \"Titulaer\",\n            \"last_name_prefix\": \"van\",\n            \"last_name_composition\": \"own_name\",\n            \"composed_last_name\": \"Titulaer\",\n            \"composed_last_name_prefix\": \"van\",\n            \"full_name\": \"Chantalle van Titulaer\",\n            \"full_name_alt\": \"Titulaer, Chantalle van\",\n            \"gender\": \"female\",\n            \"number\": \"1\",\n            \"exact_employee_number\": \"5\",\n            \"nationality\": \"NR\",\n            \"national_id\": \"hyqflu\",\n            \"birth_place\": \"Rotterdam\",\n            \"birth_date\": \"1992-09-03\",\n            \"marital_status\": \"single\",\n            \"marital_date\": \"2019-07-01\",\n            \"partner_last_name\": null,\n            \"partner_last_name_prefix\": null,\n            \"work_email\": \"hey@buddee.nl\",\n            \"work_phone\": \"0678605343\",\n            \"work_phone_extension\": null,\n            \"work_mobile\": \"0612345678\",\n            \"personal_email\": null,\n            \"personal_phone\": \"0645632145\",\n            \"personal_mobile\": null,\n            \"street\": \"Hoofdstraat\",\n            \"street_number\": \"124\",\n            \"street_number_suffix\": \"B\",\n            \"postal_code\": \"3062 DF\",\n            \"city\": \"Amsterdam\",\n            \"country\": \"NL\",\n            \"bank_account_holder\": \"C. Titulaer\",\n            \"bank_account_iban\": \"NL68INGB9012918502\",\n            \"emergency_contact_name\": \"Hans\",\n            \"emergency_contact_relation\": \"Vader\",\n            \"emergency_contact_email\": null,\n            \"emergency_contact_phone\": \"0627472838\",\n            \"hire_date\": null,\n            \"employment_date\": \"2021-11-15\",\n            \"first_day_at_work_date\": \"2021-11-15\",\n            \"seniority_date\": \"2021-11-15\",\n            \"archived_at\": null,\n            \"created_at\": \"2021-04-19 12:39:15\",\n            \"updated_at\": \"2024-11-11 09:28:35\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"invite\",\n                \"read\",\n                \"read.full\",\n                \"update\",\n                \"approvals.read\",\n                \"approvals.update\",\n                \"assets.create\",\n                \"assets.delete\",\n                \"assets.read\",\n                \"assets.read.unassigned\",\n                \"assets.update\",\n                \"company_bikes.create\",\n                \"company_bikes.delete\",\n                \"company_bikes.read\",\n                \"company_bikes.update\",\n                \"company_cars.create\",\n                \"company_cars.delete\",\n                \"company_cars.read\",\n                \"company_cars.update\",\n                \"contracts.create\",\n                \"contracts.delete\",\n                \"contracts.read\",\n                \"contracts.update\",\n                \"documents.attribute.is_shared_with_all\",\n                \"documents.attribute.is_shared_with_employee\",\n                \"documents.create\",\n                \"documents.delete\",\n                \"documents.read\",\n                \"documents.read.unassigned\",\n                \"documents.update\",\n                \"employee_attributes.create\",\n                \"employee_attributes.delete\",\n                \"employee_attributes.read\",\n                \"employee_attributes.update\",\n                \"employee_change_requests.create\",\n                \"employee_change_requests.delete\",\n                \"employee_change_requests.merge\",\n                \"employee_change_requests.read\",\n                \"employee_change_requests.update\",\n                \"employee_changes.export\",\n                \"employee_changes.read\",\n                \"employee_course_documents.create\",\n                \"employee_course_documents.delete\",\n                \"employee_course_documents.read\",\n                \"employee_courses.create\",\n                \"employee_courses.delete\",\n                \"employee_courses.management_settings\",\n                \"employee_courses.read\",\n                \"employee_courses.report\",\n                \"employee_courses.update\",\n                \"employee_labels.create\",\n                \"employee_labels.delete\",\n                \"employee_labels.read\",\n                \"employee_labels.update\",\n                \"employee_leave_types.delete\",\n                \"employee_leave_types.read\",\n                \"employee_leave_types.report\",\n                \"employee_leave_types.update\",\n                \"employee_notes.create\",\n                \"employee_notes.delete\",\n                \"employee_notes.read\",\n                \"employee_notes.update\",\n                \"employee_pictures.create\",\n                \"employee_pictures.delete\",\n                \"employee_pictures.read\",\n                \"employee_projects.create\",\n                \"employee_projects.delete\",\n                \"employee_projects.read\",\n                \"employee_projects.update\",\n                \"employee_settings.management_settings\",\n                \"employee_settings.read\",\n                \"employee_settings.update\",\n                \"employee_skills.create\",\n                \"employee_skills.delete\",\n                \"employee_skills.read\",\n                \"employee_skills.report\",\n                \"employee_skills.update\",\n                \"employments.create\",\n                \"employments.delete\",\n                \"employments.read\",\n                \"employments.update\",\n                \"expense_documents.create\",\n                \"expense_documents.delete\",\n                \"expense_documents.read\",\n                \"expense_items.create\",\n                \"expense_items.delete\",\n                \"expense_items.read\",\n                \"expense_items.update\",\n                \"expenses.attribute.is_processed\",\n                \"expenses.create\",\n                \"expenses.delete\",\n                \"expenses.read\",\n                \"expenses.report\",\n                \"expenses.update\",\n                \"family_members.create\",\n                \"family_members.delete\",\n                \"family_members.read\",\n                \"family_members.update\",\n                \"form_answers.read\",\n                \"form_answers.update\",\n                \"form_documents.create\",\n                \"form_documents.delete\",\n                \"form_documents.read\",\n                \"form_viewers.create\",\n                \"form_viewers.delete\",\n                \"form_viewers.read\",\n                \"forms.create\",\n                \"forms.delete\",\n                \"forms.management_settings\",\n                \"forms.read\",\n                \"forms.update\",\n                \"goals.create\",\n                \"goals.delete\",\n                \"goals.read\",\n                \"goals.report\",\n                \"goals.update\",\n                \"leave_balance_adjustments.create\",\n                \"leave_balance_adjustments.delete\",\n                \"leave_balance_adjustments.read\",\n                \"leave_balance_adjustments.update\",\n                \"leave_balance_prorations.read\",\n                \"leave_balances.create\",\n                \"leave_balances.delete\",\n                \"leave_balances.read\",\n                \"leave_balances.report\",\n                \"leave_balances.update\",\n                \"leave_registrations.create\",\n                \"leave_registrations.delete\",\n                \"leave_registrations.read\",\n                \"leave_registrations.update\",\n                \"leave_requests.create\",\n                \"leave_requests.delete\",\n                \"leave_requests.read\",\n                \"leave_requests.update\",\n                \"leave_schemes.create\",\n                \"leave_schemes.delete\",\n                \"leave_schemes.read\",\n                \"leave_schemes.update\",\n                \"payroll_documents.create\",\n                \"payroll_documents.delete\",\n                \"payroll_documents.read\",\n                \"payroll_documents.read.unassigned\",\n                \"payroll_documents.update\",\n                \"positions.create\",\n                \"positions.delete\",\n                \"positions.read\",\n                \"positions.update\",\n                \"salaries.create\",\n                \"salaries.delete\",\n                \"salaries.read\",\n                \"salaries.report\",\n                \"salaries.update\",\n                \"sick_leave_registrations.attribute.do_auto_calculate\",\n                \"sick_leave_registrations.attribute.is_verified\",\n                \"sick_leave_registrations.create\",\n                \"sick_leave_registrations.delete\",\n                \"sick_leave_registrations.read\",\n                \"sick_leave_registrations.report\",\n                \"sick_leave_registrations.update\",\n                \"tasks.create\",\n                \"tasks.delete\",\n                \"tasks.read\",\n                \"tasks.read.unassigned\",\n                \"tasks.update\",\n                \"template_concepts.create\",\n                \"template_concepts.delete\",\n                \"template_concepts.read\",\n                \"template_concepts.update\",\n                \"terminations.create\",\n                \"terminations.delete\",\n                \"terminations.read\",\n                \"terminations.update\",\n                \"time_registrations.attribute.is_processed\",\n                \"time_registrations.create\",\n                \"time_registrations.delete\",\n                \"time_registrations.import\",\n                \"time_registrations.leave_balance_adjustment.create\",\n                \"time_registrations.leave_balance_adjustment.delete\",\n                \"time_registrations.read\",\n                \"time_registrations.report\",\n                \"time_registrations.update\",\n                \"trip_registrations.attribute.is_processed\",\n                \"trip_registrations.create\",\n                \"trip_registrations.delete\",\n                \"trip_registrations.import\",\n                \"trip_registrations.read\",\n                \"trip_registrations.report\",\n                \"trip_registrations.update\",\n                \"wage_components.create\",\n                \"wage_components.delete\",\n                \"wage_components.read\",\n                \"wage_components.update\",\n                \"work_location_statuses.attribute.is_processed\",\n                \"work_location_statuses.create\",\n                \"work_location_statuses.delete\",\n                \"work_location_statuses.read\",\n                \"work_location_statuses.report\",\n                \"work_location_statuses.update\",\n                \"work_schedules.create\",\n                \"work_schedules.delete\",\n                \"work_schedules.read\",\n                \"work_schedules.update\"\n            ],\n            \"salutation\": \"Mevr.\"\n        },\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ],\n        \"days_received\": 22.86,\n        \"days_used\": 0,\n        \"days_remaining\": 22.86,\n        \"is_active\": true\n    }\n}"}],"_postman_id":"a7a5e28f-6e43-4f98-9f9e-3cb3629b2ea2"},{"name":"Update leave balance Copy","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"d7782226-adce-4e5c-8052-90fb2eb33923"}}],"id":"671d28ea-fbc7-4ba1-acea-a85f1e6c45b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-balances/767574","description":"<p>Delete a leave balance</p>\n","urlObject":{"path":["leave-balances","767574"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"d26c4e57-a1b2-4f61-b1db-ab8d958fc376","name":"Delete leave balance","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/leave-balances/767574"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 12 Dec 2024 12:41:16 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"671d28ea-fbc7-4ba1-acea-a85f1e6c45b0"}],"id":"9682332e-a872-4643-96b6-566dc3840adb","description":"<h4 id=\"sortable-fields\">Sortable fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hours_received</code></td>\n<td>The amount of hours totally received per balance</td>\n</tr>\n<tr>\n<td><code>hours_used</code></td>\n<td>The amount of hours used</td>\n</tr>\n<tr>\n<td><code>hours_remaining</code></td>\n<td>The amount of hours currently available on this balance</td>\n</tr>\n<tr>\n<td><code>expiration_date</code></td>\n<td>Sort on the expiration date the leave balance expires on</td>\n</tr>\n<tr>\n<td><code>employee</code></td>\n<td>Sort based on employee</td>\n</tr>\n<tr>\n<td><code>leave_type</code></td>\n<td>Sort based on the leave type</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td>Sort based on the start date of the leave balance</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"model\">Model</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Validation Rules</strong></th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>employee_id</code></td>\n<td>Integer</td>\n<td>Unique identifier for the employee</td>\n<td><code>required</code>, <code>uneditable</code></td>\n<td>Cannot be modified, scoped to the employee.</td>\n</tr>\n<tr>\n<td><code>leave_type_id</code></td>\n<td>Integer</td>\n<td>Unique identifier for the leave type</td>\n<td><code>required</code>, <code>uneditable</code></td>\n<td>Cannot be modified, must exist</td>\n</tr>\n<tr>\n<td><code>fulltime_hours</code></td>\n<td>Integer</td>\n<td>Amount of fulltime hours calculated on this balance</td>\n<td><code>nullable</code>, <code>numberic</code>, <code>between: 32,60</code></td>\n<td>Cannot be modified, nullable</td>\n</tr>\n<tr>\n<td><code>hours_accruable</code></td>\n<td>Integer (numeric)</td>\n<td>The number of hours acrued for the leave balance</td>\n<td><code>nullable</code>, <code>numeric</code></td>\n<td>Must be a number between 0 and 2080.</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td>Date</td>\n<td>The start date of the leave balance</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code></td>\n<td>Required, must follow the <code>Y-m-d</code> date format.</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>Date</td>\n<td>The end date of the leave balance</td>\n<td><code>required</code>, <code>date_format:Y-m-d</code>, <code>after_or_equal:start_date</code></td>\n<td>Required, must be after or equal to the <code>start_date</code>.</td>\n</tr>\n<tr>\n<td><code>expiration_date</code></td>\n<td>Date (nullable)</td>\n<td>The end date of the leave balance</td>\n<td><code>nullable</code>, <code>date_format:Y-m-d</code></td>\n<td>Optional, must be a valid date format if provided. And before or after the end date</td>\n</tr>\n<tr>\n<td><code>do_auto_calculate</code></td>\n<td>Boolean</td>\n<td>Whether the leave balance is automatically calculated</td>\n<td><code>required</code>, <code>boolean</code></td>\n<td>Required, must be a boolean value.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9682332e-a872-4643-96b6-566dc3840adb"}],"id":"8c2c8a76-9617-4fc7-9d57-a61061b239aa","description":"<p>Leave exists out of leave types which can be assigned to different type of employments and work schedules.</p>\n<p>When creating leave there's two options.</p>\n<ul>\n<li><p>Create a leave request - which can be approved or dissaproved, after approval this creates a leave registration.</p>\n</li>\n<li><p>Create a leave registration - which is the registered leave itself.</p>\n</li>\n</ul>\n<p>An approved leave requests results in one or more leave registrations (based on available leave balances).</p>\n","_postman_id":"8c2c8a76-9617-4fc7-9d57-a61061b239aa"},{"name":"Sick leave registrations","item":[{"name":"Sick leave registrations","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"4a242423-814c-4a88-ab2b-c6d215acdc62"}}],"id":"a67b76fc-11ce-4005-ad17-b267f5371edb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/sick-leave-registrations","description":"<p>Retrieves all sick leave registrations.</p>\n","urlObject":{"path":["sick-leave-registrations"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Retrieves sick leave registrations with IDs greater than or equal to 123. </p>\n","type":"text/plain"},"key":"id","value":"gte:123"},{"disabled":true,"description":{"content":"<p>Retrieves sick leave registrations for a specific employee. </p>\n","type":"text/plain"},"key":"employee_id","value":"123"},{"disabled":true,"description":{"content":"<p>Retrieves sick leave registrations starting on or after 25-12-2023. </p>\n","type":"text/plain"},"key":"start_date","value":"gte:2023-12-25"},{"disabled":true,"description":{"content":"<p>Retrieves sick leave registrations with a end_date on or after 25-12-2023. </p>\n","type":"text/plain"},"key":"end_date","value":"gte:2023-12-25"},{"disabled":true,"description":{"content":"<p>Sorts results by start date in descending order (indicated by <code>-</code>).</p>\n","type":"text/plain"},"key":"sort","value":"-start_date"}],"variable":[]}},"response":[{"id":"6d2f71ca-3283-4ea8-9bb4-583c60a8d534","name":"Sick leave registrations","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/sick-leave-registrations","host":["https://api.buddee.nl"],"path":["sick-leave-registrations"],"query":[{"key":"id","value":"gte:123","description":"Retrieves sick leave registrations with IDs greater than or equal to 123. ","disabled":true},{"key":"employee_id","value":"123","description":"Retrieves sick leave registrations for a specific employee. ","type":"text","disabled":true},{"key":"start_date","value":"gte:2023-12-25","description":"Retrieves sick leave registrations starting on or after 25-12-2023. ","disabled":true},{"key":"end_date","value":"gte:2023-12-25","description":"Retrieves sick leave registrations with a end_date on or after 25-12-2023. ","disabled":true},{"key":"sort","value":"-start_date","description":"Sorts results by start date in descending order (indicated by `-`).","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 12 Dec 2024 12:50:57 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 20,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 197102,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"days\": null,\n            \"hours\": \"144.00\",\n            \"start_date\": \"2022-08-08\",\n            \"start_time\": null,\n            \"end_date\": \"2022-08-31\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-07-18 07:11:55\",\n            \"updated_at\": \"2022-08-31 08:13:22\",\n            \"processable\": {\n                \"id\": 194837,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197102,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:29:13\",\n                \"updated_at\": \"2023-06-21 07:29:13\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197267,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"days\": null,\n            \"hours\": \"147.00\",\n            \"start_date\": \"2022-09-05\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2022-09-28\",\n            \"end_time\": \"20:00\",\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-09-05 08:44:57\",\n            \"updated_at\": \"2022-09-28 12:06:49\",\n            \"processable\": {\n                \"id\": 194834,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197267,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:28:55\",\n                \"updated_at\": \"2023-06-21 07:28:55\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197326,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"days\": null,\n            \"hours\": \"4.00\",\n            \"start_date\": \"2022-09-21\",\n            \"start_time\": null,\n            \"end_date\": \"2022-09-27\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-09-21 14:38:17\",\n            \"updated_at\": \"2022-09-28 12:08:34\",\n            \"processable\": {\n                \"id\": 194835,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197326,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:28:55\",\n                \"updated_at\": \"2023-06-21 07:28:55\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197355,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"days\": null,\n            \"hours\": \"276.00\",\n            \"start_date\": \"2022-09-28\",\n            \"start_time\": \"13:00\",\n            \"end_date\": \"2022-11-15\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-09-28 12:07:46\",\n            \"updated_at\": \"2022-11-15 12:23:36\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197482,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"days\": null,\n            \"hours\": \"4.00\",\n            \"start_date\": \"2022-10-18\",\n            \"start_time\": \"13:00\",\n            \"end_date\": \"2022-10-18\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-10-18 13:47:15\",\n            \"updated_at\": \"2022-10-18 13:47:43\",\n            \"processable\": {\n                \"id\": 194832,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197482,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:28:36\",\n                \"updated_at\": \"2023-06-21 07:28:36\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197622,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"days\": 10,\n            \"hours\": \"68.00\",\n            \"start_date\": \"2023-09-01\",\n            \"start_time\": \"13:00\",\n            \"end_date\": \"2023-09-14\",\n            \"end_time\": \"09:00\",\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-11-15 12:22:52\",\n            \"updated_at\": \"2023-09-15 13:00:15\",\n            \"processable\": {\n                \"id\": 194822,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197622,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:27:49\",\n                \"updated_at\": \"2023-06-21 07:27:49\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197677,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"days\": 7,\n            \"hours\": \"51.00\",\n            \"start_date\": \"2022-11-25\",\n            \"start_time\": \"13:00\",\n            \"end_date\": \"2022-12-05\",\n            \"end_time\": \"16:00\",\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-11-25 13:30:13\",\n            \"updated_at\": \"2022-12-05 09:36:04\",\n            \"processable\": {\n                \"id\": 194815,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197677,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:27:24\",\n                \"updated_at\": \"2023-06-21 07:27:24\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197741,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"days\": 5,\n            \"hours\": \"40.00\",\n            \"start_date\": \"2022-12-06\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2022-12-12\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-12-06 08:41:02\",\n            \"updated_at\": \"2022-12-13 12:32:39\",\n            \"processable\": {\n                \"id\": 194814,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197741,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-21 07:27:24\",\n                \"updated_at\": \"2023-06-21 07:27:24\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197787,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"days\": 42,\n            \"hours\": \"336.00\",\n            \"start_date\": \"2022-12-13\",\n            \"start_time\": null,\n            \"end_date\": \"2023-02-20\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2022-12-13 12:46:19\",\n            \"updated_at\": \"2023-02-20 09:01:57\",\n            \"processable\": {\n                \"id\": 188723,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 197787,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-02-06 10:09:23\",\n                \"updated_at\": \"2023-02-10 12:29:08\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 199340,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"days\": 55,\n            \"hours\": \"440.00\",\n            \"start_date\": \"2023-06-06\",\n            \"start_time\": null,\n            \"end_date\": \"2023-08-22\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2023-06-06 12:01:50\",\n            \"updated_at\": \"2023-08-25 13:12:36\",\n            \"processable\": {\n                \"id\": 193822,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 199340,\n                \"to_date\": null,\n                \"is_fully_processed\": true,\n                \"created_at\": \"2023-06-09 08:08:00\",\n                \"updated_at\": \"2023-08-15 13:37:49\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 199412,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"days\": null,\n            \"hours\": null,\n            \"start_date\": \"2023-06-17\",\n            \"start_time\": null,\n            \"end_date\": \"2023-06-17\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2023-06-17 13:39:30\",\n            \"updated_at\": \"2023-06-17 13:39:43\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 200370,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"days\": 34,\n            \"hours\": \"266.00\",\n            \"start_date\": \"2023-09-15\",\n            \"start_time\": \"15:00\",\n            \"end_date\": \"2023-11-01\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2023-09-15 13:00:41\",\n            \"updated_at\": \"2023-11-01 12:03:08\",\n            \"processable\": {\n                \"id\": 201687,\n                \"organization_id\": 14799,\n                \"entity_type\": \"sick_leave_registration\",\n                \"entity_id\": 200370,\n                \"to_date\": null,\n                \"is_fully_processed\": false,\n                \"created_at\": \"2023-09-21 12:44:34\",\n                \"updated_at\": \"2023-11-30 10:36:31\",\n                \"_permissions\": [\n                    \"create\",\n                    \"delete\",\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201009,\n            \"organization_id\": 14799,\n            \"employee_id\": 138748,\n            \"days\": 1,\n            \"hours\": \"8.00\",\n            \"start_date\": \"2023-11-01\",\n            \"start_time\": null,\n            \"end_date\": \"2023-11-04\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2023-11-01 12:50:46\",\n            \"updated_at\": \"2023-11-16 10:12:16\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201218,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"days\": 6,\n            \"hours\": \"44.00\",\n            \"start_date\": \"2023-11-15\",\n            \"start_time\": \"13:00\",\n            \"end_date\": \"2023-11-27\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2023-11-15 10:48:29\",\n            \"updated_at\": \"2023-11-27 10:26:00\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 201414,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"days\": 17,\n            \"hours\": \"136.00\",\n            \"start_date\": \"2023-11-25\",\n            \"start_time\": null,\n            \"end_date\": \"2024-01-09\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2023-11-27 12:52:16\",\n            \"updated_at\": \"2024-01-09 10:03:54\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 203234,\n            \"organization_id\": 14799,\n            \"employee_id\": 152166,\n            \"days\": 11,\n            \"hours\": \"81.00\",\n            \"start_date\": \"2024-02-22\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-03-07\",\n            \"end_time\": \"10:00\",\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2024-02-22 13:23:37\",\n            \"updated_at\": \"2024-03-07 09:29:35\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 206465,\n            \"organization_id\": 14799,\n            \"employee_id\": 138752,\n            \"days\": 95,\n            \"hours\": \"760.00\",\n            \"start_date\": \"2024-07-03\",\n            \"start_time\": null,\n            \"end_date\": null,\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": false,\n            \"created_at\": \"2024-07-09 11:50:46\",\n            \"updated_at\": \"2024-11-12 00:00:17\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 207115,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"days\": 1,\n            \"hours\": \"5.00\",\n            \"start_date\": \"2024-08-14\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-08-14\",\n            \"end_time\": \"14:00\",\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2024-08-14 14:43:23\",\n            \"updated_at\": \"2024-08-14 14:43:44\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 207217,\n            \"organization_id\": 14799,\n            \"employee_id\": 138750,\n            \"days\": 13,\n            \"hours\": \"104.00\",\n            \"start_date\": \"2024-08-20\",\n            \"start_time\": \"09:00\",\n            \"end_date\": \"2024-09-18\",\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": true,\n            \"created_at\": \"2024-08-20 12:15:34\",\n            \"updated_at\": \"2024-09-19 08:00:02\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 207783,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"days\": 31,\n            \"hours\": \"214.00\",\n            \"start_date\": \"2024-09-19\",\n            \"start_time\": \"11:00\",\n            \"end_date\": null,\n            \"end_time\": null,\n            \"do_auto_calculate\": true,\n            \"is_verified\": false,\n            \"created_at\": \"2024-09-19 09:14:56\",\n            \"updated_at\": \"2024-11-12 00:00:19\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"attribute.do_auto_calculate\",\n                \"attribute.is_verified\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"a67b76fc-11ce-4005-ad17-b267f5371edb"},{"name":"Update sick leave registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"41033e64-0796-4f4e-98a7-955f81be3f18"}}],"id":"4bd868e1-353b-4643-b8a9-c6f7291e43fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"is_verified\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/sick-leave-registrations/197102","description":"<p>Retrieves all sick leave registrations.</p>\n","urlObject":{"path":["sick-leave-registrations","197102"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"a260de73-a7d5-4158-b813-e4fb7d7f8d89","name":"Update sick leave registration","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"is_verified\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/sick-leave-registrations/197102"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 12 Dec 2024 14:03:31 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 197102,\n        \"organization_id\": 14799,\n        \"employee_id\": 138748,\n        \"days\": 11,\n        \"hours\": \"88.00\",\n        \"start_date\": \"2022-08-08\",\n        \"start_time\": null,\n        \"end_date\": \"2022-08-31\",\n        \"end_time\": null,\n        \"do_auto_calculate\": true,\n        \"is_verified\": true,\n        \"created_at\": \"2022-07-18 07:11:55\",\n        \"updated_at\": \"2024-12-12 14:03:31\",\n        \"processable\": {\n            \"id\": 194837,\n            \"organization_id\": 14799,\n            \"entity_type\": \"sick_leave_registration\",\n            \"entity_id\": 197102,\n            \"to_date\": null,\n            \"is_fully_processed\": true,\n            \"created_at\": \"2023-06-21 07:29:13\",\n            \"updated_at\": \"2023-06-21 07:29:13\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        \"employee\": {\n            \"id\": 138748,\n            \"organization_id\": 14799,\n            \"company_id\": 14799,\n            \"job_id\": 204156,\n            \"department_id\": 154739,\n            \"location_id\": 196741,\n            \"buddy_id\": 152166,\n            \"manager_id\": 138750,\n            \"indirect_manager_id\": null,\n            \"hr_manager_id\": 138751,\n            \"cost_center_id\": null,\n            \"cost_unit_id\": null,\n            \"nmbrs_template_id\": null,\n            \"first_name\": \"Egbertje\",\n            \"initials\": \"E\",\n            \"last_name\": \"Kopers\",\n            \"last_name_prefix\": null,\n            \"last_name_composition\": \"own_name\",\n            \"composed_last_name\": \"Kopers\",\n            \"composed_last_name_prefix\": null,\n            \"full_name\": \"Egbertje Kopers\",\n            \"full_name_alt\": \"Kopers, Egbertje\",\n            \"gender\": \"female\",\n            \"number\": \"5\",\n            \"exact_employee_number\": \"7\",\n            \"nationality\": \"NL\",\n            \"national_id\": \"024137042\",\n            \"birth_place\": null,\n            \"birth_date\": \"1992-09-12\",\n            \"marital_status\": null,\n            \"marital_date\": \"2022-06-08\",\n            \"partner_last_name\": \"van Hulst\",\n            \"partner_last_name_prefix\": null,\n            \"work_email\": \"pominax961@zevars.com\",\n            \"work_phone\": null,\n            \"work_phone_extension\": null,\n            \"work_mobile\": null,\n            \"personal_email\": \"pominax961@zevars.com\",\n            \"personal_phone\": null,\n            \"personal_mobile\": null,\n            \"street\": \"Hypolitushof\",\n            \"street_number\": \"12\",\n            \"street_number_suffix\": \"2ab\",\n            \"postal_code\": \"1017XV\",\n            \"city\": \"Amsterdam\",\n            \"country\": \"NL\",\n            \"bank_account_holder\": \"E. Gloudemans\",\n            \"bank_account_iban\": \"NL93RABO6684756000\",\n            \"emergency_contact_name\": null,\n            \"emergency_contact_relation\": null,\n            \"emergency_contact_email\": null,\n            \"emergency_contact_phone\": null,\n            \"hire_date\": null,\n            \"employment_date\": \"2021-07-01\",\n            \"first_day_at_work_date\": \"2021-07-01\",\n            \"seniority_date\": \"2021-07-01\",\n            \"archived_at\": null,\n            \"created_at\": \"2021-04-20 06:36:16\",\n            \"updated_at\": \"2024-11-07 11:03:33\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"invite\",\n                \"read\",\n                \"read.full\",\n                \"update\",\n                \"approvals.read\",\n                \"approvals.update\",\n                \"assets.create\",\n                \"assets.delete\",\n                \"assets.read\",\n                \"assets.read.unassigned\",\n                \"assets.update\",\n                \"company_bikes.create\",\n                \"company_bikes.delete\",\n                \"company_bikes.read\",\n                \"company_bikes.update\",\n                \"company_cars.create\",\n                \"company_cars.delete\",\n                \"company_cars.read\",\n                \"company_cars.update\",\n                \"contracts.create\",\n                \"contracts.delete\",\n                \"contracts.read\",\n                \"contracts.update\",\n                \"documents.attribute.is_shared_with_all\",\n                \"documents.attribute.is_shared_with_employee\",\n                \"documents.create\",\n                \"documents.delete\",\n                \"documents.read\",\n                \"documents.read.unassigned\",\n                \"documents.update\",\n                \"employee_attributes.create\",\n                \"employee_attributes.delete\",\n                \"employee_attributes.read\",\n                \"employee_attributes.update\",\n                \"employee_change_requests.create\",\n                \"employee_change_requests.delete\",\n                \"employee_change_requests.merge\",\n                \"employee_change_requests.read\",\n                \"employee_change_requests.update\",\n                \"employee_changes.export\",\n                \"employee_changes.read\",\n                \"employee_course_documents.create\",\n                \"employee_course_documents.delete\",\n                \"employee_course_documents.read\",\n                \"employee_courses.create\",\n                \"employee_courses.delete\",\n                \"employee_courses.management_settings\",\n                \"employee_courses.read\",\n                \"employee_courses.report\",\n                \"employee_courses.update\",\n                \"employee_labels.create\",\n                \"employee_labels.delete\",\n                \"employee_labels.read\",\n                \"employee_labels.update\",\n                \"employee_leave_types.delete\",\n                \"employee_leave_types.read\",\n                \"employee_leave_types.report\",\n                \"employee_leave_types.update\",\n                \"employee_notes.create\",\n                \"employee_notes.delete\",\n                \"employee_notes.read\",\n                \"employee_notes.update\",\n                \"employee_pictures.create\",\n                \"employee_pictures.delete\",\n                \"employee_pictures.read\",\n                \"employee_projects.create\",\n                \"employee_projects.delete\",\n                \"employee_projects.read\",\n                \"employee_projects.update\",\n                \"employee_settings.management_settings\",\n                \"employee_settings.read\",\n                \"employee_settings.update\",\n                \"employee_skills.create\",\n                \"employee_skills.delete\",\n                \"employee_skills.read\",\n                \"employee_skills.report\",\n                \"employee_skills.update\",\n                \"employments.create\",\n                \"employments.delete\",\n                \"employments.read\",\n                \"employments.update\",\n                \"expense_documents.create\",\n                \"expense_documents.delete\",\n                \"expense_documents.read\",\n                \"expense_items.create\",\n                \"expense_items.delete\",\n                \"expense_items.read\",\n                \"expense_items.update\",\n                \"expenses.attribute.is_processed\",\n                \"expenses.create\",\n                \"expenses.delete\",\n                \"expenses.read\",\n                \"expenses.report\",\n                \"expenses.update\",\n                \"family_members.create\",\n                \"family_members.delete\",\n                \"family_members.read\",\n                \"family_members.update\",\n                \"form_answers.read\",\n                \"form_answers.update\",\n                \"form_documents.create\",\n                \"form_documents.delete\",\n                \"form_documents.read\",\n                \"form_viewers.create\",\n                \"form_viewers.delete\",\n                \"form_viewers.read\",\n                \"forms.create\",\n                \"forms.delete\",\n                \"forms.management_settings\",\n                \"forms.read\",\n                \"forms.update\",\n                \"goals.create\",\n                \"goals.delete\",\n                \"goals.read\",\n                \"goals.report\",\n                \"goals.update\",\n                \"leave_balance_adjustments.create\",\n                \"leave_balance_adjustments.delete\",\n                \"leave_balance_adjustments.read\",\n                \"leave_balance_adjustments.update\",\n                \"leave_balance_prorations.read\",\n                \"leave_balances.create\",\n                \"leave_balances.delete\",\n                \"leave_balances.read\",\n                \"leave_balances.report\",\n                \"leave_balances.update\",\n                \"leave_registrations.create\",\n                \"leave_registrations.delete\",\n                \"leave_registrations.read\",\n                \"leave_registrations.update\",\n                \"leave_requests.create\",\n                \"leave_requests.delete\",\n                \"leave_requests.read\",\n                \"leave_requests.update\",\n                \"leave_schemes.create\",\n                \"leave_schemes.delete\",\n                \"leave_schemes.read\",\n                \"leave_schemes.update\",\n                \"payroll_documents.create\",\n                \"payroll_documents.delete\",\n                \"payroll_documents.read\",\n                \"payroll_documents.read.unassigned\",\n                \"payroll_documents.update\",\n                \"positions.create\",\n                \"positions.delete\",\n                \"positions.read\",\n                \"positions.update\",\n                \"salaries.create\",\n                \"salaries.delete\",\n                \"salaries.read\",\n                \"salaries.report\",\n                \"salaries.update\",\n                \"sick_leave_registrations.attribute.do_auto_calculate\",\n                \"sick_leave_registrations.attribute.is_verified\",\n                \"sick_leave_registrations.create\",\n                \"sick_leave_registrations.delete\",\n                \"sick_leave_registrations.read\",\n                \"sick_leave_registrations.report\",\n                \"sick_leave_registrations.update\",\n                \"tasks.create\",\n                \"tasks.delete\",\n                \"tasks.read\",\n                \"tasks.read.unassigned\",\n                \"tasks.update\",\n                \"template_concepts.create\",\n                \"template_concepts.delete\",\n                \"template_concepts.read\",\n                \"template_concepts.update\",\n                \"terminations.create\",\n                \"terminations.delete\",\n                \"terminations.read\",\n                \"terminations.update\",\n                \"time_registrations.attribute.is_processed\",\n                \"time_registrations.create\",\n                \"time_registrations.delete\",\n                \"time_registrations.import\",\n                \"time_registrations.leave_balance_adjustment.create\",\n                \"time_registrations.leave_balance_adjustment.delete\",\n                \"time_registrations.read\",\n                \"time_registrations.report\",\n                \"time_registrations.update\",\n                \"trip_registrations.attribute.is_processed\",\n                \"trip_registrations.create\",\n                \"trip_registrations.delete\",\n                \"trip_registrations.import\",\n                \"trip_registrations.read\",\n                \"trip_registrations.report\",\n                \"trip_registrations.update\",\n                \"wage_components.create\",\n                \"wage_components.delete\",\n                \"wage_components.read\",\n                \"wage_components.update\",\n                \"work_location_statuses.attribute.is_processed\",\n                \"work_location_statuses.create\",\n                \"work_location_statuses.delete\",\n                \"work_location_statuses.read\",\n                \"work_location_statuses.report\",\n                \"work_location_statuses.update\",\n                \"work_schedules.create\",\n                \"work_schedules.delete\",\n                \"work_schedules.read\",\n                \"work_schedules.update\"\n            ],\n            \"salutation\": \"Mevr.\"\n        },\n        \"_permissions\": [\n            \"attribute.do_auto_calculate\",\n            \"attribute.is_verified\",\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"4bd868e1-353b-4643-b8a9-c6f7291e43fe"},{"name":"Create sick leave registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"6414595c-ebf2-493f-b42c-068983e345e7"}}],"id":"6079ce82-9f0a-4163-b614-5e73bbea3e2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138748,\n    \"days\": 2,\n    \"hours\": \"16.00\",\n    \"start_date\": \"2024-08-08\",\n    \"start_time\": null,\n    \"end_date\": \"2024-08-10\",\n    \"end_time\": null,\n    \"is_verified\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/sick-leave-registrations","description":"<p>Retrieves all sick leave registrations.</p>\n","urlObject":{"path":["sick-leave-registrations"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"020940fe-ee21-48da-95f7-1ac78921b2e8","name":"Create sick leave","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138748,\n    \"days\": 2,\n    \"hours\": \"16.00\",\n    \"start_date\": \"2024-08-08\",\n    \"start_time\": null,\n    \"end_date\": \"2024-08-10\",\n    \"end_time\": null,\n    \"is_verified\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/sick-leave-registrations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 12 Dec 2024 14:12:02 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 209363,\n        \"organization_id\": 14799,\n        \"employee_id\": 138748,\n        \"days\": 1,\n        \"hours\": \"8.00\",\n        \"start_date\": \"2024-08-08\",\n        \"start_time\": null,\n        \"end_date\": \"2024-08-10\",\n        \"end_time\": null,\n        \"do_auto_calculate\": true,\n        \"is_verified\": true,\n        \"created_at\": \"2024-12-12 14:12:01\",\n        \"updated_at\": \"2024-12-12 14:12:01\",\n        \"processable\": null,\n        \"_permissions\": [\n            \"attribute.do_auto_calculate\",\n            \"attribute.is_verified\",\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"6079ce82-9f0a-4163-b614-5e73bbea3e2c"},{"name":"Delete sick leave registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"e3f84092-6fcd-4872-bbfa-d688eb74cd10"}}],"id":"40a365cf-6683-4b44-b040-113af9b11791","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"is_verified\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/sick-leave-registrations/197102","description":"<p>Delete sick leave registration.</p>\n","urlObject":{"path":["sick-leave-registrations","197102"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"9d32383e-f914-400c-ae64-5e2a6d7926bd","name":"Delete sick leave","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"is_verified\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/sick-leave-registrations/197102"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 12 Dec 2024 14:08:40 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"40a365cf-6683-4b44-b040-113af9b11791"}],"id":"9ef9e538-5df2-4891-a060-719152fa83ea","description":"<h3 id=\"sortables\">Sortables</h3>\n<p>Use these fields in the sort query param:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>days</code></td>\n<td>Sort by amount of days</td>\n</tr>\n<tr>\n<td><code>hours</code></td>\n<td>Sort based based on hours</td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td>Sort by the start_date</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>Sort by the end_date</td>\n</tr>\n<tr>\n<td><code>is_verified</code></td>\n<td>Sort on verified leave</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"model\">Model</h4>\n<h3 id=\"model-1\">Model</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employee</td>\n<td><code>integer</code></td>\n<td>Yes</td>\n<td>Must have access to this employee, uneditable after setting it.</td>\n</tr>\n<tr>\n<td>days</td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>Is only required if the <code>do_auto_calculate</code> field is set to false.</td>\n</tr>\n<tr>\n<td>hours</td>\n<td><code>decimal</code></td>\n<td>No</td>\n<td>Is only required if the <code>do_auto_calculate</code> field is set to false.</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><code>date</code></td>\n<td>Yes</td>\n<td>Y-m-d date field, should be before or after todays date.</td>\n</tr>\n<tr>\n<td>start_time</td>\n<td><code>string</code></td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><code>date</code></td>\n<td>No</td>\n<td>Y-m-d date field, should be before or after start_date.  <br />  <br />Should be before or equal to today.</td>\n</tr>\n<tr>\n<td>end_time</td>\n<td><code>string</code></td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>do_auto_calculate</td>\n<td><code>boolean</code></td>\n<td>Yes</td>\n<td>This field determines if the amount of hours / days of sick leave will be calculate automatically by Buddee.  <br />  <br />If set to true Buddee uses the employee workschedule to determine the amount of sick hours / sick days.  <br />  <br />If set to false the hours and days fields are required</td>\n</tr>\n<tr>\n<td>is_verified</td>\n<td><code>boolean</code></td>\n<td>Yes</td>\n<td>Boolean to determine if a sickleave has been verified</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9ef9e538-5df2-4891-a060-719152fa83ea"},{"name":"Time registrations","item":[{"name":"Time Registrations","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"9ad1785f-9691-43e5-80da-c7a641b24936"}}],"id":"8a7300b7-b345-4951-9473-2345109fdde3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/time-registrations?approval_status=pending","urlObject":{"path":["time-registrations"],"host":["https://api.buddee.nl"],"query":[{"key":"approval_status","value":"pending"},{"disabled":true,"description":{"content":"<p>ID of the employee you want to filter on</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>ID of the company you want to filter on</p>\n","type":"text/plain"},"key":"company_id","value":""},{"disabled":true,"description":{"content":"<p>Department ID you want to folder on</p>\n","type":"text/plain"},"key":"department_id","value":""},{"disabled":true,"description":{"content":"<p>Filters on the registration type (can be found in organization settings)</p>\n","type":"text/plain"},"key":"time_registration_type_id","value":""},{"disabled":true,"description":{"content":"<p>Filters on time registrations for a specific project (can be found in organisation settings)</p>\n","type":"text/plain"},"key":"project_id","value":""},{"disabled":true,"description":{"content":"<p>Filters on a specific date</p>\n","type":"text/plain"},"key":"date","value":""},{"disabled":true,"key":"is_overtime","value":""},{"disabled":true,"key":"overtime_compensation_type","value":""}],"variable":[]}},"response":[],"_postman_id":"8a7300b7-b345-4951-9473-2345109fdde3"},{"name":"Create time registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"d9692407-755b-4615-aef8-3f36929e4b2f"}}],"id":"b9deb99d-b552-40a0-9a56-eaf2868f5d82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"hours\": 8,\n    \"date\": \"2024-12-12\",\n    \"is_overtime\": false,\n    \"is_processed\": false\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/time-registrations","description":"<h3 id=\"time-registrations\">Time Registrations</h3>\n<p>This endpoint allows you to create a new time registration entry for an employee.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>employee_id</code> (integer): The ID of the employee for whom the time registration is being created.</p>\n</li>\n<li><p><code>hours</code> (integer): The number of hours worked.</p>\n</li>\n<li><p><code>date</code> (string): The date of the time registration in the format \"YYYY-MM-DD\".</p>\n</li>\n<li><p><code>is_overtime</code> (boolean): Indicates whether the hours worked are overtime.</p>\n</li>\n<li><p><code>is_processed</code> (boolean): Indicates whether the time registration has been processed.</p>\n</li>\n</ul>\n","urlObject":{"path":["time-registrations"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"a00fcac3-9236-4dd9-9ae3-184d21d71430","name":"Create time registration","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"hours\": 8,\n    \"date\": \"2024-12-12\",\n    \"is_overtime\": false,\n    \"is_processed\": false\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/time-registrations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 13 Dec 2024 13:20:06 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 338163,\n        \"organization_id\": 14799,\n        \"employee_id\": 138749,\n        \"time_registration_type_id\": null,\n        \"project_id\": null,\n        \"leave_balance_adjustment_id\": null,\n        \"hours\": \"8.00\",\n        \"date\": \"2024-12-12\",\n        \"start_time\": null,\n        \"end_time\": null,\n        \"notes\": null,\n        \"is_overtime\": false,\n        \"overtime_compensation_type\": null,\n        \"is_processed\": false,\n        \"processed_at\": null,\n        \"created_at\": \"2024-12-13 13:20:06\",\n        \"updated_at\": \"2024-12-13 13:20:06\",\n        \"approval\": {\n            \"id\": 592126,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"expense_id\": null,\n            \"leave_request_id\": null,\n            \"leave_scheme_id\": null,\n            \"time_registration_id\": 338163,\n            \"trip_registration_id\": null,\n            \"work_location_status_id\": null,\n            \"approver_id\": null,\n            \"status\": \"pending\",\n            \"comments\": null,\n            \"auto_approval_date\": null,\n            \"is_sequential\": false,\n            \"status_changed_at\": null,\n            \"created_at\": \"2024-12-13 13:20:06\",\n            \"updated_at\": \"2024-12-13 13:20:06\",\n            \"_permissions\": [\n                \"read\",\n                \"update\"\n            ]\n        },\n        \"_permissions\": [\n            \"attribute.is_processed\",\n            \"create\",\n            \"delete\",\n            \"import\",\n            \"leave_balance_adjustment.create\",\n            \"leave_balance_adjustment.delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"b9deb99d-b552-40a0-9a56-eaf2868f5d82"},{"name":"Update time registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"7c05962c-2f6d-4431-9898-d3072ddcc876"}}],"id":"fafc3e6b-d61b-4463-95e8-39d3c04a0232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"hours\": 12\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/time-registrations/338163","description":"<h3 id=\"update-time-registration\">Update Time Registration</h3>\n<p>This endpoint is used to update an existing time registration entry for an employee.</p>\n","urlObject":{"path":["time-registrations","338163"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"fafc3e6b-d61b-4463-95e8-39d3c04a0232"},{"name":"Delete time registration","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"bb099d82-c833-4746-9936-2af164213fcd"}}],"id":"6ed24e27-ffd7-4442-b6b1-3ee5865d4d5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/time-registrations/338163","description":"<p>The HTTP DELETE request is used to delete a specific time registration entry for an employee with the ID 338163.</p>\n","urlObject":{"path":["time-registrations","338163"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ed24e27-ffd7-4442-b6b1-3ee5865d4d5c"}],"id":"c29dbd79-9ef5-4744-a919-06f6b93794a4","description":"<h4 id=\"sortables\">Sortables</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>is_overtime</code></td>\n<td>Sorts by whether the time registration is marked as overtime.</td>\n</tr>\n<tr>\n<td><code>processed_at</code></td>\n<td>Sorts by the timestamp indicating when the time registration was processed.</td>\n</tr>\n<tr>\n<td><code>approval</code></td>\n<td>Sorts by the approval status, followed by the registration date and start time. Joins with the <code>approvals</code> table.</td>\n</tr>\n<tr>\n<td><code>date</code></td>\n<td>Sorts by the registration date, followed by the start time.</td>\n</tr>\n<tr>\n<td><code>employee</code></td>\n<td>Sorts by the employee's full name, followed by the registration date and start time.</td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td>Sorts by the project's name, followed by the registration date and start time.</td>\n</tr>\n<tr>\n<td><code>time_registration_type</code></td>\n<td>Sorts by the name of the time registration type, followed by the registration date and start time.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"model\">Model</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Validation Rules</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employee_id</td>\n<td><code>integer</code></td>\n<td>ID of the employee</td>\n<td>Required, uneditable, scoped_employee_id</td>\n<td>Links the time registration to an employee.</td>\n</tr>\n<tr>\n<td>time_registration_type_id</td>\n<td><code>integer</code></td>\n<td>Type of time registration</td>\n<td>Nullable, exists in the <code>time_registration_types</code> table</td>\n<td>Optional; specifies the registration type.</td>\n</tr>\n<tr>\n<td>project_id</td>\n<td><code>integer</code></td>\n<td>ID of the associated project</td>\n<td>Nullable, exists in the <code>projects</code> table</td>\n<td>Optional; links the registration to a project.</td>\n</tr>\n<tr>\n<td>hours</td>\n<td><code>decimal</code></td>\n<td>Number of hours registered</td>\n<td>Required, numeric, between -2080 and 2080</td>\n<td>Tracks the duration of work in hours.</td>\n</tr>\n<tr>\n<td>date</td>\n<td><code>date</code></td>\n<td>Date of the registration</td>\n<td>Required, formatted as <code>Y-m-d</code></td>\n<td>Specifies the day of the time entry.</td>\n</tr>\n<tr>\n<td>start_time</td>\n<td><code>time</code></td>\n<td>Start time of the registration</td>\n<td>Nullable, valid time format</td>\n<td>Optional; indicates when the task began.</td>\n</tr>\n<tr>\n<td>end_time</td>\n<td><code>time</code></td>\n<td>End time of the registration</td>\n<td>Nullable, valid time format, must be greater than <code>start_time</code></td>\n<td>Optional; indicates when the task ended.</td>\n</tr>\n<tr>\n<td>notes</td>\n<td><code>string</code></td>\n<td>Additional notes for the registration</td>\n<td>Nullable</td>\n<td>Optional; allows for extra details.</td>\n</tr>\n<tr>\n<td>is_overtime</td>\n<td><code>boolean</code></td>\n<td>Whether the registration is overtime</td>\n<td>Required, must be a boolean value</td>\n<td>Indicates if overtime applies.</td>\n</tr>\n<tr>\n<td>overtime_compensation_type</td>\n<td><code>string</code></td>\n<td>Type of overtime compensation</td>\n<td>Nullable, must match a value in <code>overtime_compensation_types</code> configuration</td>\n<td>Optional; defines how overtime is compensated.</td>\n</tr>\n<tr>\n<td>is_processed</td>\n<td><code>boolean</code></td>\n<td>Whether the registration is processed</td>\n<td>Required, must be a boolean value, requires <code>object_permission:time_registrations.attribute.is_processed</code></td>\n<td>Tracks the processing status.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c29dbd79-9ef5-4744-a919-06f6b93794a4"},{"name":"Work schedules","item":[{"name":"Work schedules","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"7b3eabd3-7eca-4dd3-9b7a-5e5889c79fbb"}}],"id":"ab5d06c9-9162-49e7-bdc9-a8db6bb39a76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/work-schedules","urlObject":{"path":["work-schedules"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>ID of the employee you want to filter on</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Filter on start date</p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>Filter on end date</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"key":"is_biweekly","value":""},{"disabled":true,"key":"active","value":""},{"disabled":true,"key":"future","value":""}],"variable":[]}},"response":[{"id":"d6be8a39-dfb8-462d-ba78-37e77ad5bc0e","name":"works schedules","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/work-schedules","host":["https://api.buddee.nl"],"path":["work-schedules"],"query":[{"key":"employee_id","value":"","description":"ID of the employee you want to filter on","type":"text","disabled":true},{"key":"start_date","value":"","description":"Filter on start date","type":"text","disabled":true},{"key":"end_date","value":"","description":"Filter on end date","type":"text","disabled":true},{"key":"is_biweekly","value":"","type":"text","disabled":true},{"key":"active","value":"","type":"text","disabled":true},{"key":"future","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 20 Jan 2025 10:33:18 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 185,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 188572,\n            \"organization_id\": 39956,\n            \"employee_id\": 163596,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2002-01-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:26:12\",\n            \"updated_at\": \"2024-12-04 11:49:22\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188575,\n            \"organization_id\": 39956,\n            \"employee_id\": 163597,\n            \"week_1_day_1_hours\": \"5.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"13:15\",\n            \"week_1_day_2_hours\": \"5.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"13:15\",\n            \"week_1_day_3_hours\": \"5.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"13:15\",\n            \"week_1_day_4_hours\": \"5.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"13:15\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2003-02-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:24\",\n            \"updated_at\": \"2024-12-04 12:10:05\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 5,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188576,\n            \"organization_id\": 39956,\n            \"employee_id\": 163598,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2005-12-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:26\",\n            \"updated_at\": \"2024-12-04 11:46:43\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188577,\n            \"organization_id\": 39956,\n            \"employee_id\": 163599,\n            \"week_1_day_1_hours\": \"8.50\",\n            \"week_1_day_1_start_time\": \"07:30\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.50\",\n            \"week_1_day_2_start_time\": \"07:30\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.50\",\n            \"week_1_day_3_start_time\": \"07:30\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.50\",\n            \"week_1_day_4_start_time\": \"07:30\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2004-10-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:27\",\n            \"updated_at\": \"2024-12-04 11:45:27\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8.5,\n            \"hours_per_week\": 34,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188578,\n            \"organization_id\": 39956,\n            \"employee_id\": 163600,\n            \"week_1_day_1_hours\": \"5.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"13:15\",\n            \"week_1_day_2_hours\": \"5.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"13:15\",\n            \"week_1_day_3_hours\": \"5.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"13:15\",\n            \"week_1_day_4_hours\": \"5.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"13:15\",\n            \"week_1_day_5_hours\": \"5.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"13:15\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2003-11-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:29\",\n            \"updated_at\": \"2024-12-04 12:09:00\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 5,\n            \"hours_per_week\": 25,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188579,\n            \"organization_id\": 39956,\n            \"employee_id\": 163601,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2001-07-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:31\",\n            \"updated_at\": \"2024-12-04 12:10:33\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188580,\n            \"organization_id\": 39956,\n            \"employee_id\": 163602,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2004-02-09\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:32\",\n            \"updated_at\": \"2024-12-04 12:21:15\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 24,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188581,\n            \"organization_id\": 39956,\n            \"employee_id\": 163603,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2003-02-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:34\",\n            \"updated_at\": \"2024-12-04 12:12:50\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 24,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188582,\n            \"organization_id\": 39956,\n            \"employee_id\": 163604,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2002-09-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:35\",\n            \"updated_at\": \"2024-12-04 11:50:51\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 24,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188583,\n            \"organization_id\": 39956,\n            \"employee_id\": 163605,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2003-06-16\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:37\",\n            \"updated_at\": \"2024-12-04 12:14:41\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188584,\n            \"organization_id\": 39956,\n            \"employee_id\": 163606,\n            \"week_1_day_1_hours\": \"4.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"11:15\",\n            \"week_1_day_2_hours\": \"4.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"11:15\",\n            \"week_1_day_3_hours\": \"4.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"11:15\",\n            \"week_1_day_4_hours\": \"4.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"11:15\",\n            \"week_1_day_5_hours\": \"4.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"11:15\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2004-05-25\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:38\",\n            \"updated_at\": \"2024-12-04 11:22:59\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 4,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188585,\n            \"organization_id\": 39956,\n            \"employee_id\": 163607,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2006-05-31\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:40\",\n            \"updated_at\": \"2024-12-04 11:44:30\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6.4,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188586,\n            \"organization_id\": 39956,\n            \"employee_id\": 163608,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": \"8.00\",\n            \"week_2_day_1_start_time\": \"08:00\",\n            \"week_2_day_1_end_time\": \"17:00\",\n            \"week_2_day_2_hours\": \"8.00\",\n            \"week_2_day_2_start_time\": \"08:00\",\n            \"week_2_day_2_end_time\": \"17:00\",\n            \"week_2_day_3_hours\": \"8.00\",\n            \"week_2_day_3_start_time\": \"08:00\",\n            \"week_2_day_3_end_time\": \"17:00\",\n            \"week_2_day_4_hours\": \"8.00\",\n            \"week_2_day_4_start_time\": \"08:00\",\n            \"week_2_day_4_end_time\": \"17:00\",\n            \"week_2_day_5_hours\": \"8.00\",\n            \"week_2_day_5_start_time\": \"08:00\",\n            \"week_2_day_5_end_time\": \"17:00\",\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-08-01\",\n            \"end_date\": null,\n            \"is_biweekly\": true,\n            \"created_at\": \"2024-11-13 13:31:41\",\n            \"updated_at\": \"2024-12-04 12:20:43\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 36,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188587,\n            \"organization_id\": 39956,\n            \"employee_id\": 163609,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-01-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:43\",\n            \"updated_at\": \"2024-12-04 12:20:01\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188588,\n            \"organization_id\": 39956,\n            \"employee_id\": 163610,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": \"8.00\",\n            \"week_2_day_1_start_time\": \"07:00\",\n            \"week_2_day_1_end_time\": \"15:30\",\n            \"week_2_day_2_hours\": \"8.00\",\n            \"week_2_day_2_start_time\": \"07:00\",\n            \"week_2_day_2_end_time\": \"15:30\",\n            \"week_2_day_3_hours\": \"8.00\",\n            \"week_2_day_3_start_time\": \"07:00\",\n            \"week_2_day_3_end_time\": \"15:30\",\n            \"week_2_day_4_hours\": \"8.00\",\n            \"week_2_day_4_start_time\": \"07:00\",\n            \"week_2_day_4_end_time\": \"15:30\",\n            \"week_2_day_5_hours\": \"8.00\",\n            \"week_2_day_5_start_time\": \"07:00\",\n            \"week_2_day_5_end_time\": \"15:30\",\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2025-01-06\",\n            \"end_date\": null,\n            \"is_biweekly\": true,\n            \"created_at\": \"2024-11-13 13:31:44\",\n            \"updated_at\": \"2025-01-07 14:11:34\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 36,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188589,\n            \"organization_id\": 39956,\n            \"employee_id\": 163611,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-02-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:45\",\n            \"updated_at\": \"2024-12-04 11:48:10\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188590,\n            \"organization_id\": 39956,\n            \"employee_id\": 163612,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-08-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:47\",\n            \"updated_at\": \"2024-12-04 12:21:42\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6.67,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188591,\n            \"organization_id\": 39956,\n            \"employee_id\": 163613,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-09-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:49\",\n            \"updated_at\": \"2024-12-04 12:09:35\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188592,\n            \"organization_id\": 39956,\n            \"employee_id\": 163614,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-05-28\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:50\",\n            \"updated_at\": \"2024-12-04 12:17:55\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188593,\n            \"organization_id\": 39956,\n            \"employee_id\": 163615,\n            \"week_1_day_1_hours\": \"7.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"15:45\",\n            \"week_1_day_2_hours\": \"7.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"15:45\",\n            \"week_1_day_3_hours\": \"7.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"15:45\",\n            \"week_1_day_4_hours\": \"7.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"15:45\",\n            \"week_1_day_5_hours\": \"7.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"15:45\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-05-28\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:52\",\n            \"updated_at\": \"2024-12-04 11:31:18\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7,\n            \"hours_per_week\": 35,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188594,\n            \"organization_id\": 39956,\n            \"employee_id\": 163616,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-10-07\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:53\",\n            \"updated_at\": \"2024-12-04 11:57:35\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6.4,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188595,\n            \"organization_id\": 39956,\n            \"employee_id\": 163617,\n            \"week_1_day_1_hours\": \"7.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"15:45\",\n            \"week_1_day_2_hours\": \"7.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"15:45\",\n            \"week_1_day_3_hours\": \"7.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"15:45\",\n            \"week_1_day_4_hours\": \"7.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"15:45\",\n            \"week_1_day_5_hours\": \"7.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"15:45\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-10-28\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:55\",\n            \"updated_at\": \"2024-12-04 12:13:19\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7,\n            \"hours_per_week\": 35,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188596,\n            \"organization_id\": 39956,\n            \"employee_id\": 163618,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"5.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"13:15\",\n            \"week_1_day_3_hours\": \"5.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"13:15\",\n            \"week_1_day_4_hours\": \"5.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"13:15\",\n            \"week_1_day_5_hours\": \"5.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"13:15\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-11-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:56\",\n            \"updated_at\": \"2024-12-04 11:58:08\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 5,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188597,\n            \"organization_id\": 39956,\n            \"employee_id\": 163619,\n            \"week_1_day_1_hours\": \"5.50\",\n            \"week_1_day_1_start_time\": \"08:45\",\n            \"week_1_day_1_end_time\": \"14:45\",\n            \"week_1_day_2_hours\": \"5.50\",\n            \"week_1_day_2_start_time\": \"08:45\",\n            \"week_1_day_2_end_time\": \"14:45\",\n            \"week_1_day_3_hours\": \"5.50\",\n            \"week_1_day_3_start_time\": \"08:45\",\n            \"week_1_day_3_end_time\": \"14:45\",\n            \"week_1_day_4_hours\": \"5.50\",\n            \"week_1_day_4_start_time\": \"08:45\",\n            \"week_1_day_4_end_time\": \"14:45\",\n            \"week_1_day_5_hours\": \"4.00\",\n            \"week_1_day_5_start_time\": \"08:45\",\n            \"week_1_day_5_end_time\": \"12:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-07-02\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:31:58\",\n            \"updated_at\": \"2024-12-04 11:26:48\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 5.2,\n            \"hours_per_week\": 26,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188598,\n            \"organization_id\": 39956,\n            \"employee_id\": 163620,\n            \"week_1_day_1_hours\": \"4.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"12:15\",\n            \"week_1_day_2_hours\": \"4.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"12:15\",\n            \"week_1_day_3_hours\": \"4.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"12:15\",\n            \"week_1_day_4_hours\": \"4.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"12:15\",\n            \"week_1_day_5_hours\": \"4.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"12:15\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-09-21\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:00\",\n            \"updated_at\": \"2024-12-04 11:29:39\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 4,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188599,\n            \"organization_id\": 39956,\n            \"employee_id\": 163621,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2016-12-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:01\",\n            \"updated_at\": \"2024-12-04 11:27:54\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188600,\n            \"organization_id\": 39956,\n            \"employee_id\": 163622,\n            \"week_1_day_1_hours\": \"5.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"13:15\",\n            \"week_1_day_2_hours\": \"5.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"13:15\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"5.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"13:15\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": \"5.00\",\n            \"week_1_day_6_start_time\": \"08:00\",\n            \"week_1_day_6_end_time\": \"13:15\",\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2016-11-07\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:03\",\n            \"updated_at\": \"2024-12-04 12:08:28\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 5,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188601,\n            \"organization_id\": 39956,\n            \"employee_id\": 163623,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2017-01-09\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:05\",\n            \"updated_at\": \"2024-12-04 11:51:23\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188602,\n            \"organization_id\": 39956,\n            \"employee_id\": 163624,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2017-09-12\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:07\",\n            \"updated_at\": \"2024-12-04 12:19:01\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188603,\n            \"organization_id\": 39956,\n            \"employee_id\": 163625,\n            \"week_1_day_1_hours\": \"7.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"15:45\",\n            \"week_1_day_2_hours\": \"7.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"15:45\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"7.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"15:45\",\n            \"week_1_day_5_hours\": \"7.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"15:45\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-02-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:08\",\n            \"updated_at\": \"2024-12-04 11:48:57\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7,\n            \"hours_per_week\": 28,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188604,\n            \"organization_id\": 39956,\n            \"employee_id\": 163626,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-04-16\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:10\",\n            \"updated_at\": \"2024-12-04 12:11:55\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188605,\n            \"organization_id\": 39956,\n            \"employee_id\": 163627,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-04-23\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:12\",\n            \"updated_at\": \"2024-12-04 11:50:21\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188606,\n            \"organization_id\": 39956,\n            \"employee_id\": 163628,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": \"8.00\",\n            \"week_2_day_1_start_time\": \"08:00\",\n            \"week_2_day_1_end_time\": \"17:00\",\n            \"week_2_day_2_hours\": \"8.00\",\n            \"week_2_day_2_start_time\": \"08:00\",\n            \"week_2_day_2_end_time\": \"17:00\",\n            \"week_2_day_3_hours\": \"8.00\",\n            \"week_2_day_3_start_time\": \"08:00\",\n            \"week_2_day_3_end_time\": \"17:00\",\n            \"week_2_day_4_hours\": \"8.00\",\n            \"week_2_day_4_start_time\": \"08:00\",\n            \"week_2_day_4_end_time\": \"17:00\",\n            \"week_2_day_5_hours\": \"8.00\",\n            \"week_2_day_5_start_time\": \"08:00\",\n            \"week_2_day_5_end_time\": \"17:00\",\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-08-01\",\n            \"end_date\": null,\n            \"is_biweekly\": true,\n            \"created_at\": \"2024-11-13 13:32:13\",\n            \"updated_at\": \"2024-12-04 12:17:28\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 36,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188607,\n            \"organization_id\": 39956,\n            \"employee_id\": 163629,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2019-04-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:14\",\n            \"updated_at\": \"2024-12-04 12:14:08\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188608,\n            \"organization_id\": 39956,\n            \"employee_id\": 163630,\n            \"week_1_day_1_hours\": \"7.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"15:45\",\n            \"week_1_day_2_hours\": \"7.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"15:45\",\n            \"week_1_day_3_hours\": \"7.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"15:45\",\n            \"week_1_day_4_hours\": \"7.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"15:45\",\n            \"week_1_day_5_hours\": \"7.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"15:45\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2019-12-02\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:16\",\n            \"updated_at\": \"2024-12-04 11:49:53\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7,\n            \"hours_per_week\": 35,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188609,\n            \"organization_id\": 39956,\n            \"employee_id\": 163631,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-04-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:18\",\n            \"updated_at\": \"2024-12-04 11:30:37\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188610,\n            \"organization_id\": 39956,\n            \"employee_id\": 163632,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": \"8.00\",\n            \"week_1_day_6_start_time\": \"08:00\",\n            \"week_1_day_6_end_time\": \"17:00\",\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2022-08-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:19\",\n            \"updated_at\": \"2024-12-04 11:56:28\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7.6,\n            \"hours_per_week\": 38,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188611,\n            \"organization_id\": 39956,\n            \"employee_id\": 163633,\n            \"week_1_day_1_hours\": \"7.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"15:45\",\n            \"week_1_day_2_hours\": \"7.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"15:45\",\n            \"week_1_day_3_hours\": \"7.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"15:45\",\n            \"week_1_day_4_hours\": \"7.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"15:45\",\n            \"week_1_day_5_hours\": \"7.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"15:45\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-07-06\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:21\",\n            \"updated_at\": \"2024-12-04 12:16:03\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7,\n            \"hours_per_week\": 35,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188612,\n            \"organization_id\": 39956,\n            \"employee_id\": 163634,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"0.00\",\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-06-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:22\",\n            \"updated_at\": \"2024-12-19 10:19:23\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188613,\n            \"organization_id\": 39956,\n            \"employee_id\": 163635,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": null,\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": \"8.00\",\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": \"8.00\",\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2022-05-09\",\n            \"end_date\": \"2024-11-30\",\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:23\",\n            \"updated_at\": \"2024-11-21 12:35:53\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 16,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188614,\n            \"organization_id\": 39956,\n            \"employee_id\": 163636,\n            \"week_1_day_1_hours\": \"7.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"15:45\",\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": \"7.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"15:45\",\n            \"week_1_day_4_hours\": \"7.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"15:45\",\n            \"week_1_day_5_hours\": \"7.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"15:45\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-09-25\",\n            \"end_date\": \"2024-12-31\",\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:25\",\n            \"updated_at\": \"2024-12-20 09:08:47\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7,\n            \"hours_per_week\": 28,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188615,\n            \"organization_id\": 39956,\n            \"employee_id\": 163637,\n            \"week_1_day_1_hours\": \"4.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"13:15\",\n            \"week_1_day_2_hours\": \"4.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"13:15\",\n            \"week_1_day_3_hours\": \"4.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"13:15\",\n            \"week_1_day_4_hours\": \"4.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"13:15\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-11-20\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:26\",\n            \"updated_at\": \"2024-12-04 12:19:31\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 4,\n            \"hours_per_week\": 16,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188616,\n            \"organization_id\": 39956,\n            \"employee_id\": 163638,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": null,\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": \"8.00\",\n            \"week_1_day_6_start_time\": \"08:00\",\n            \"week_1_day_6_end_time\": \"17:00\",\n            \"week_1_day_7_hours\": \"8.00\",\n            \"week_1_day_7_start_time\": \"08:00\",\n            \"week_1_day_7_end_time\": \"17:00\",\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-02-13\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:32:28\",\n            \"updated_at\": \"2024-12-04 11:29:01\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 16,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188617,\n            \"organization_id\": 39956,\n            \"employee_id\": 163639,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-02-13\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:00\",\n            \"updated_at\": \"2024-12-04 11:24:05\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188618,\n            \"organization_id\": 39956,\n            \"employee_id\": 163640,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": null,\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": \"8.00\",\n            \"week_1_day_6_start_time\": \"08:00\",\n            \"week_1_day_6_end_time\": \"17:00\",\n            \"week_1_day_7_hours\": \"8.00\",\n            \"week_1_day_7_start_time\": \"08:00\",\n            \"week_1_day_7_end_time\": \"17:00\",\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-03-12\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:02\",\n            \"updated_at\": \"2024-12-04 11:32:34\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 16,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188619,\n            \"organization_id\": 39956,\n            \"employee_id\": 163641,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-06-17\",\n            \"end_date\": \"2024-11-30\",\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:04\",\n            \"updated_at\": \"2024-11-20 08:26:47\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188620,\n            \"organization_id\": 39956,\n            \"employee_id\": 163642,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": null,\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": \"8.00\",\n            \"week_1_day_6_start_time\": \"08:00\",\n            \"week_1_day_6_end_time\": \"17:00\",\n            \"week_1_day_7_hours\": \"8.00\",\n            \"week_1_day_7_start_time\": \"08:00\",\n            \"week_1_day_7_end_time\": \"17:00\",\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-08-12\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:05\",\n            \"updated_at\": \"2024-12-04 11:32:03\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 16,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188621,\n            \"organization_id\": 39956,\n            \"employee_id\": 163643,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-08-19\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:07\",\n            \"updated_at\": \"2024-12-04 12:01:25\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188622,\n            \"organization_id\": 39956,\n            \"employee_id\": 163644,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-09-23\",\n            \"end_date\": \"2024-11-30\",\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:09\",\n            \"updated_at\": \"2024-11-20 08:25:03\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188623,\n            \"organization_id\": 39956,\n            \"employee_id\": 163645,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2003-10-27\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:38\",\n            \"updated_at\": \"2024-11-13 13:33:38\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188624,\n            \"organization_id\": 39956,\n            \"employee_id\": 163646,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2005-09-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:39\",\n            \"updated_at\": \"2024-11-13 13:33:39\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188625,\n            \"organization_id\": 39956,\n            \"employee_id\": 163647,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2003-11-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:41\",\n            \"updated_at\": \"2024-11-13 13:33:41\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188626,\n            \"organization_id\": 39956,\n            \"employee_id\": 163648,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2002-04-29\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:42\",\n            \"updated_at\": \"2024-11-13 13:33:42\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188627,\n            \"organization_id\": 39956,\n            \"employee_id\": 163649,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2000-01-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:43\",\n            \"updated_at\": \"2024-11-13 13:33:43\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188628,\n            \"organization_id\": 39956,\n            \"employee_id\": 163650,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"1997-09-12\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:44\",\n            \"updated_at\": \"2024-11-13 13:33:44\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188629,\n            \"organization_id\": 39956,\n            \"employee_id\": 163651,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2004-12-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:45\",\n            \"updated_at\": \"2024-11-13 13:33:45\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188630,\n            \"organization_id\": 39956,\n            \"employee_id\": 163652,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2004-10-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:46\",\n            \"updated_at\": \"2024-11-13 13:33:46\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188631,\n            \"organization_id\": 39956,\n            \"employee_id\": 163653,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2002-04-26\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:48\",\n            \"updated_at\": \"2024-11-13 13:33:48\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188632,\n            \"organization_id\": 39956,\n            \"employee_id\": 163654,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2002-11-26\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:49\",\n            \"updated_at\": \"2024-11-13 13:33:49\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188633,\n            \"organization_id\": 39956,\n            \"employee_id\": 163655,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2005-12-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:50\",\n            \"updated_at\": \"2024-11-13 13:33:50\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188634,\n            \"organization_id\": 39956,\n            \"employee_id\": 163656,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2006-01-18\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:51\",\n            \"updated_at\": \"2024-11-13 13:33:51\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188635,\n            \"organization_id\": 39956,\n            \"employee_id\": 163657,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2006-04-24\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:52\",\n            \"updated_at\": \"2024-11-13 13:33:52\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188636,\n            \"organization_id\": 39956,\n            \"employee_id\": 163658,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2006-02-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:54\",\n            \"updated_at\": \"2024-11-13 13:33:54\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188637,\n            \"organization_id\": 39956,\n            \"employee_id\": 163659,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2004-09-23\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:55\",\n            \"updated_at\": \"2024-11-13 13:33:55\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188638,\n            \"organization_id\": 39956,\n            \"employee_id\": 163660,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2004-07-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:56\",\n            \"updated_at\": \"2024-11-13 13:33:56\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188639,\n            \"organization_id\": 39956,\n            \"employee_id\": 163661,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2002-01-12\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:58\",\n            \"updated_at\": \"2025-01-16 15:16:17\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188640,\n            \"organization_id\": 39956,\n            \"employee_id\": 163662,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2005-08-30\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:33:59\",\n            \"updated_at\": \"2025-01-16 15:11:45\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188641,\n            \"organization_id\": 39956,\n            \"employee_id\": 163663,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2006-01-06\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:00\",\n            \"updated_at\": \"2025-01-16 15:13:40\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188642,\n            \"organization_id\": 39956,\n            \"employee_id\": 163664,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2007-03-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:02\",\n            \"updated_at\": \"2025-01-16 15:19:44\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188643,\n            \"organization_id\": 39956,\n            \"employee_id\": 163665,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2006-05-15\",\n            \"end_date\": \"2007-04-30\",\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:03\",\n            \"updated_at\": \"2024-12-04 13:13:13\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188644,\n            \"organization_id\": 39956,\n            \"employee_id\": 163666,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2008-07-28\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:05\",\n            \"updated_at\": \"2024-11-13 13:34:05\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188645,\n            \"organization_id\": 39956,\n            \"employee_id\": 163667,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2008-10-27\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:06\",\n            \"updated_at\": \"2024-11-13 13:34:06\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188646,\n            \"organization_id\": 39956,\n            \"employee_id\": 163668,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-04-27\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:07\",\n            \"updated_at\": \"2025-01-16 15:23:35\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188647,\n            \"organization_id\": 39956,\n            \"employee_id\": 163669,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2008-11-21\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:08\",\n            \"updated_at\": \"2024-11-13 13:34:08\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188648,\n            \"organization_id\": 39956,\n            \"employee_id\": 163670,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-01-14\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:10\",\n            \"updated_at\": \"2025-01-16 15:20:25\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188649,\n            \"organization_id\": 39956,\n            \"employee_id\": 163671,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-02-16\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:11\",\n            \"updated_at\": \"2024-11-13 13:34:11\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188650,\n            \"organization_id\": 39956,\n            \"employee_id\": 163672,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"16:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"16:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"16:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"16:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"16:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-02-16\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:12\",\n            \"updated_at\": \"2025-01-16 15:21:51\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188651,\n            \"organization_id\": 39956,\n            \"employee_id\": 163673,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-03-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:13\",\n            \"updated_at\": \"2024-11-13 13:34:13\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188652,\n            \"organization_id\": 39956,\n            \"employee_id\": 163674,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-04-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:15\",\n            \"updated_at\": \"2024-11-13 13:34:15\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188653,\n            \"organization_id\": 39956,\n            \"employee_id\": 163675,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-07-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:16\",\n            \"updated_at\": \"2024-11-13 13:34:16\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188654,\n            \"organization_id\": 39956,\n            \"employee_id\": 163676,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-08-10\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:17\",\n            \"updated_at\": \"2024-11-13 13:34:17\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188655,\n            \"organization_id\": 39956,\n            \"employee_id\": 163677,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-10-12\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:19\",\n            \"updated_at\": \"2024-11-13 13:34:19\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188656,\n            \"organization_id\": 39956,\n            \"employee_id\": 163678,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-11-27\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:20\",\n            \"updated_at\": \"2025-01-16 15:16:49\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188657,\n            \"organization_id\": 39956,\n            \"employee_id\": 163679,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2009-10-19\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:21\",\n            \"updated_at\": \"2025-01-16 15:20:59\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188658,\n            \"organization_id\": 39956,\n            \"employee_id\": 163680,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-02-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:22\",\n            \"updated_at\": \"2024-11-13 13:34:22\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188659,\n            \"organization_id\": 39956,\n            \"employee_id\": 163681,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-02-17\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:24\",\n            \"updated_at\": \"2024-11-13 13:34:24\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188660,\n            \"organization_id\": 39956,\n            \"employee_id\": 163682,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-02-22\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:24\",\n            \"updated_at\": \"2024-11-13 13:34:24\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188661,\n            \"organization_id\": 39956,\n            \"employee_id\": 163683,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-03-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:26\",\n            \"updated_at\": \"2024-11-13 13:34:26\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188662,\n            \"organization_id\": 39956,\n            \"employee_id\": 163684,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-03-24\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:27\",\n            \"updated_at\": \"2024-11-13 13:34:27\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188663,\n            \"organization_id\": 39956,\n            \"employee_id\": 163685,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-05-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:29\",\n            \"updated_at\": \"2024-11-13 13:34:29\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188664,\n            \"organization_id\": 39956,\n            \"employee_id\": 163686,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-06-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:30\",\n            \"updated_at\": \"2024-11-13 13:34:30\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188665,\n            \"organization_id\": 39956,\n            \"employee_id\": 163687,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-06-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:31\",\n            \"updated_at\": \"2024-11-13 13:34:31\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188666,\n            \"organization_id\": 39956,\n            \"employee_id\": 163688,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2010-06-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:32\",\n            \"updated_at\": \"2024-11-13 13:34:32\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188667,\n            \"organization_id\": 39956,\n            \"employee_id\": 163689,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2011-09-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:34\",\n            \"updated_at\": \"2024-11-13 13:34:34\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188668,\n            \"organization_id\": 39956,\n            \"employee_id\": 163690,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2011-11-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:35\",\n            \"updated_at\": \"2024-11-13 13:34:35\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188669,\n            \"organization_id\": 39956,\n            \"employee_id\": 163691,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2012-01-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:36\",\n            \"updated_at\": \"2024-11-13 13:34:36\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188670,\n            \"organization_id\": 39956,\n            \"employee_id\": 163692,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2012-03-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:37\",\n            \"updated_at\": \"2025-01-16 15:23:00\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188671,\n            \"organization_id\": 39956,\n            \"employee_id\": 163693,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2012-08-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:39\",\n            \"updated_at\": \"2024-11-13 13:34:39\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188672,\n            \"organization_id\": 39956,\n            \"employee_id\": 163694,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2012-10-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:40\",\n            \"updated_at\": \"2024-11-13 13:34:40\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188673,\n            \"organization_id\": 39956,\n            \"employee_id\": 163695,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2012-10-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:41\",\n            \"updated_at\": \"2024-11-13 13:34:41\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188674,\n            \"organization_id\": 39956,\n            \"employee_id\": 163696,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-03-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:42\",\n            \"updated_at\": \"2024-11-13 13:34:42\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188675,\n            \"organization_id\": 39956,\n            \"employee_id\": 163697,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-05-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:43\",\n            \"updated_at\": \"2024-11-13 13:34:43\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188676,\n            \"organization_id\": 39956,\n            \"employee_id\": 163698,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-07-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:45\",\n            \"updated_at\": \"2024-11-13 13:34:45\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188677,\n            \"organization_id\": 39956,\n            \"employee_id\": 163699,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-10-07\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:46\",\n            \"updated_at\": \"2024-11-13 13:34:46\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188678,\n            \"organization_id\": 39956,\n            \"employee_id\": 163700,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-10-28\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:34:47\",\n            \"updated_at\": \"2024-11-13 13:34:47\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188679,\n            \"organization_id\": 39956,\n            \"employee_id\": 163701,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-11-27\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:47\",\n            \"updated_at\": \"2025-01-16 15:18:03\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188680,\n            \"organization_id\": 39956,\n            \"employee_id\": 163702,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-12-02\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:49\",\n            \"updated_at\": \"2024-11-13 13:35:49\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188681,\n            \"organization_id\": 39956,\n            \"employee_id\": 163703,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-12-02\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:50\",\n            \"updated_at\": \"2024-11-13 13:35:50\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188682,\n            \"organization_id\": 39956,\n            \"employee_id\": 163704,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-12-09\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:51\",\n            \"updated_at\": \"2024-11-13 13:35:51\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188683,\n            \"organization_id\": 39956,\n            \"employee_id\": 163705,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-03-17\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:52\",\n            \"updated_at\": \"2024-11-13 13:35:52\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188684,\n            \"organization_id\": 39956,\n            \"employee_id\": 163706,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-04-24\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:53\",\n            \"updated_at\": \"2025-01-16 15:14:46\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188685,\n            \"organization_id\": 39956,\n            \"employee_id\": 163707,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-05-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:54\",\n            \"updated_at\": \"2025-01-16 15:17:20\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188686,\n            \"organization_id\": 39956,\n            \"employee_id\": 163708,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-07-16\",\n            \"end_date\": \"2024-12-31\",\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:56\",\n            \"updated_at\": \"2024-12-04 13:16:24\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188687,\n            \"organization_id\": 39956,\n            \"employee_id\": 163709,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-07-28\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:57\",\n            \"updated_at\": \"2024-11-13 13:35:57\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188688,\n            \"organization_id\": 39956,\n            \"employee_id\": 163710,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-10-06\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:58\",\n            \"updated_at\": \"2024-11-13 13:35:58\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188689,\n            \"organization_id\": 39956,\n            \"employee_id\": 163711,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-10-20\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:35:59\",\n            \"updated_at\": \"2024-11-13 13:35:59\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188690,\n            \"organization_id\": 39956,\n            \"employee_id\": 163712,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2014-12-08\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:01\",\n            \"updated_at\": \"2024-11-13 13:36:01\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188691,\n            \"organization_id\": 39956,\n            \"employee_id\": 163713,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-01-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:02\",\n            \"updated_at\": \"2024-11-13 13:36:02\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188692,\n            \"organization_id\": 39956,\n            \"employee_id\": 163714,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-02-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:04\",\n            \"updated_at\": \"2024-11-13 13:36:04\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188693,\n            \"organization_id\": 39956,\n            \"employee_id\": 163715,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-02-02\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:05\",\n            \"updated_at\": \"2024-11-13 13:36:05\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188694,\n            \"organization_id\": 39956,\n            \"employee_id\": 163716,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-02-16\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:06\",\n            \"updated_at\": \"2024-11-13 13:36:06\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188695,\n            \"organization_id\": 39956,\n            \"employee_id\": 163717,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-02-16\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:08\",\n            \"updated_at\": \"2024-11-13 13:36:08\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188696,\n            \"organization_id\": 39956,\n            \"employee_id\": 163718,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-03-24\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:09\",\n            \"updated_at\": \"2024-11-13 13:36:09\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188697,\n            \"organization_id\": 39956,\n            \"employee_id\": 163719,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-05-04\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:10\",\n            \"updated_at\": \"2024-11-13 13:36:10\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188698,\n            \"organization_id\": 39956,\n            \"employee_id\": 163720,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-08-10\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:11\",\n            \"updated_at\": \"2024-11-13 13:36:11\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188699,\n            \"organization_id\": 39956,\n            \"employee_id\": 163721,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-09-21\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:12\",\n            \"updated_at\": \"2024-11-13 13:36:12\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188700,\n            \"organization_id\": 39956,\n            \"employee_id\": 163722,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-09-21\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:14\",\n            \"updated_at\": \"2024-11-13 13:36:14\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188701,\n            \"organization_id\": 39956,\n            \"employee_id\": 163723,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-10-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:15\",\n            \"updated_at\": \"2024-11-13 13:36:15\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188702,\n            \"organization_id\": 39956,\n            \"employee_id\": 163724,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-11-23\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:16\",\n            \"updated_at\": \"2024-11-13 13:36:16\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188703,\n            \"organization_id\": 39956,\n            \"employee_id\": 163725,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-11-30\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:17\",\n            \"updated_at\": \"2024-11-13 13:36:17\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188704,\n            \"organization_id\": 39956,\n            \"employee_id\": 163726,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-12-21\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:19\",\n            \"updated_at\": \"2024-11-13 13:36:19\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188705,\n            \"organization_id\": 39956,\n            \"employee_id\": 163727,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2016-02-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:20\",\n            \"updated_at\": \"2024-11-13 13:36:20\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188706,\n            \"organization_id\": 39956,\n            \"employee_id\": 163728,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2016-11-07\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:21\",\n            \"updated_at\": \"2024-11-13 13:36:21\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188707,\n            \"organization_id\": 39956,\n            \"employee_id\": 163729,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2017-11-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:22\",\n            \"updated_at\": \"2024-11-13 13:36:22\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188708,\n            \"organization_id\": 39956,\n            \"employee_id\": 163730,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2017-11-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:23\",\n            \"updated_at\": \"2024-11-13 13:36:23\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188709,\n            \"organization_id\": 39956,\n            \"employee_id\": 163731,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-04-16\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:24\",\n            \"updated_at\": \"2024-11-13 13:36:24\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188710,\n            \"organization_id\": 39956,\n            \"employee_id\": 163732,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-11-23\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:26\",\n            \"updated_at\": \"2025-01-16 15:13:06\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188711,\n            \"organization_id\": 39956,\n            \"employee_id\": 163733,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-07-09\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:27\",\n            \"updated_at\": \"2024-11-13 13:36:27\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188712,\n            \"organization_id\": 39956,\n            \"employee_id\": 163734,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-08-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:28\",\n            \"updated_at\": \"2025-01-16 15:22:23\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188713,\n            \"organization_id\": 39956,\n            \"employee_id\": 163735,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2019-04-29\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:29\",\n            \"updated_at\": \"2024-11-13 13:36:29\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188714,\n            \"organization_id\": 39956,\n            \"employee_id\": 163736,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2019-10-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:31\",\n            \"updated_at\": \"2024-11-13 13:36:31\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188715,\n            \"organization_id\": 39956,\n            \"employee_id\": 163737,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-03-09\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:32\",\n            \"updated_at\": \"2024-11-13 13:36:32\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188716,\n            \"organization_id\": 39956,\n            \"employee_id\": 163738,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-10-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:33\",\n            \"updated_at\": \"2024-11-13 13:36:33\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188717,\n            \"organization_id\": 39956,\n            \"employee_id\": 163739,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-08-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:35\",\n            \"updated_at\": \"2024-11-13 13:36:35\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188718,\n            \"organization_id\": 39956,\n            \"employee_id\": 163740,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-12-07\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:36\",\n            \"updated_at\": \"2024-11-13 13:36:36\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188719,\n            \"organization_id\": 39956,\n            \"employee_id\": 163741,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2020-12-07\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:37\",\n            \"updated_at\": \"2024-11-13 13:36:37\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188720,\n            \"organization_id\": 39956,\n            \"employee_id\": 163742,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-01-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:39\",\n            \"updated_at\": \"2024-11-13 13:36:39\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188721,\n            \"organization_id\": 39956,\n            \"employee_id\": 163743,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-04-12\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:40\",\n            \"updated_at\": \"2024-11-13 13:36:40\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188722,\n            \"organization_id\": 39956,\n            \"employee_id\": 163744,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2021-06-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:41\",\n            \"updated_at\": \"2024-11-13 13:36:41\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188723,\n            \"organization_id\": 39956,\n            \"employee_id\": 163745,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-03-11\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:42\",\n            \"updated_at\": \"2025-01-16 15:14:11\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188724,\n            \"organization_id\": 39956,\n            \"employee_id\": 163746,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2022-04-11\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:44\",\n            \"updated_at\": \"2024-11-13 13:36:44\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188725,\n            \"organization_id\": 39956,\n            \"employee_id\": 163747,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2022-05-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:45\",\n            \"updated_at\": \"2024-11-13 13:36:45\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188726,\n            \"organization_id\": 39956,\n            \"employee_id\": 163748,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-01-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:36:47\",\n            \"updated_at\": \"2024-11-13 13:36:47\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188727,\n            \"organization_id\": 39956,\n            \"employee_id\": 163749,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-03-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:16\",\n            \"updated_at\": \"2024-11-13 13:37:16\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188729,\n            \"organization_id\": 39956,\n            \"employee_id\": 163751,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-04-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:19\",\n            \"updated_at\": \"2024-11-13 13:37:19\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188730,\n            \"organization_id\": 39956,\n            \"employee_id\": 163752,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-07-03\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:20\",\n            \"updated_at\": \"2024-11-13 13:37:20\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188731,\n            \"organization_id\": 39956,\n            \"employee_id\": 163753,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2023-08-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:22\",\n            \"updated_at\": \"2024-11-13 13:37:22\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188732,\n            \"organization_id\": 39956,\n            \"employee_id\": 163754,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-01-02\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:23\",\n            \"updated_at\": \"2024-11-13 13:37:23\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188733,\n            \"organization_id\": 39956,\n            \"employee_id\": 163755,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-02-13\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:24\",\n            \"updated_at\": \"2024-11-13 13:37:24\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188734,\n            \"organization_id\": 39956,\n            \"employee_id\": 163756,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-02-19\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:25\",\n            \"updated_at\": \"2025-01-16 15:18:38\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188735,\n            \"organization_id\": 39956,\n            \"employee_id\": 163757,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-03-18\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:26\",\n            \"updated_at\": \"2024-11-13 13:37:26\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188736,\n            \"organization_id\": 39956,\n            \"employee_id\": 163758,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-03-18\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:27\",\n            \"updated_at\": \"2025-01-16 15:19:08\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188737,\n            \"organization_id\": 39956,\n            \"employee_id\": 163759,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-08-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:28\",\n            \"updated_at\": \"2024-11-13 13:37:28\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188738,\n            \"organization_id\": 39956,\n            \"employee_id\": 163760,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-08-05\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:29\",\n            \"updated_at\": \"2024-11-13 13:37:29\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188739,\n            \"organization_id\": 39956,\n            \"employee_id\": 163761,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-09-23\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:37:30\",\n            \"updated_at\": \"2024-11-13 13:37:30\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188740,\n            \"organization_id\": 39956,\n            \"employee_id\": 163762,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-02-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:41:43\",\n            \"updated_at\": \"2024-11-13 13:41:43\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188741,\n            \"organization_id\": 39956,\n            \"employee_id\": 163763,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-10-15\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:41:46\",\n            \"updated_at\": \"2024-11-13 13:41:46\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188742,\n            \"organization_id\": 39956,\n            \"employee_id\": 163764,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2017-08-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:41:48\",\n            \"updated_at\": \"2024-11-13 13:41:48\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188743,\n            \"organization_id\": 39956,\n            \"employee_id\": 163765,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-02-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:41:54\",\n            \"updated_at\": \"2024-11-13 13:41:54\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188744,\n            \"organization_id\": 39956,\n            \"employee_id\": 163766,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": \"7.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"15:45\",\n            \"week_1_day_3_hours\": \"7.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"15:45\",\n            \"week_1_day_4_hours\": \"7.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"15:45\",\n            \"week_1_day_5_hours\": \"7.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"15:45\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2013-12-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:42:11\",\n            \"updated_at\": \"2024-12-04 12:07:44\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7,\n            \"hours_per_week\": 28,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188745,\n            \"organization_id\": 39956,\n            \"employee_id\": 163767,\n            \"week_1_day_1_hours\": \"5.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"13:15\",\n            \"week_1_day_2_hours\": \"5.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"13:15\",\n            \"week_1_day_3_hours\": \"5.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"13:15\",\n            \"week_1_day_4_hours\": null,\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": \"5.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"13:15\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2015-04-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:42:13\",\n            \"updated_at\": \"2024-12-04 11:52:02\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 5,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188746,\n            \"organization_id\": 39956,\n            \"employee_id\": 163768,\n            \"week_1_day_1_hours\": \"7.50\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"7.50\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"7.50\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"7.50\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2018-01-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:42:16\",\n            \"updated_at\": \"2024-12-04 11:25:28\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7.5,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188747,\n            \"organization_id\": 39956,\n            \"employee_id\": 163769,\n            \"week_1_day_1_hours\": \"6.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"14:30\",\n            \"week_1_day_2_hours\": \"6.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"14:30\",\n            \"week_1_day_3_hours\": \"6.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"14:30\",\n            \"week_1_day_4_hours\": \"6.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"14:30\",\n            \"week_1_day_5_hours\": \"6.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"14:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2017-11-13\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:42:17\",\n            \"updated_at\": \"2024-12-04 12:07:07\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6,\n            \"hours_per_week\": 30,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 188748,\n            \"organization_id\": 39956,\n            \"employee_id\": 163770,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"4.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"12:15\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-03-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-13 13:42:21\",\n            \"updated_at\": \"2024-12-04 11:46:07\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 7.2,\n            \"hours_per_week\": 36,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 189374,\n            \"organization_id\": 39956,\n            \"employee_id\": 163644,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-12-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-20 08:25:03\",\n            \"updated_at\": \"2024-11-20 08:25:03\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 189375,\n            \"organization_id\": 39956,\n            \"employee_id\": 163641,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-12-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-20 08:26:47\",\n            \"updated_at\": \"2024-12-04 12:12:26\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 24,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 189448,\n            \"organization_id\": 39956,\n            \"employee_id\": 164187,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-11-25\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-20 13:07:23\",\n            \"updated_at\": \"2024-11-20 13:07:23\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 189498,\n            \"organization_id\": 39956,\n            \"employee_id\": 164216,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"09:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-11-25\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-21 10:08:26\",\n            \"updated_at\": \"2024-11-21 10:08:26\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 189507,\n            \"organization_id\": 39956,\n            \"employee_id\": 163635,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": null,\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": \"8.00\",\n            \"week_1_day_6_start_time\": \"08:00\",\n            \"week_1_day_6_end_time\": \"17:00\",\n            \"week_1_day_7_hours\": \"8.00\",\n            \"week_1_day_7_start_time\": \"08:00\",\n            \"week_1_day_7_end_time\": \"17:00\",\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-12-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-21 12:35:53\",\n            \"updated_at\": \"2024-12-04 12:16:42\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 24,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 189797,\n            \"organization_id\": 39956,\n            \"employee_id\": 164186,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": null,\n            \"week_1_day_4_start_time\": null,\n            \"week_1_day_4_end_time\": null,\n            \"week_1_day_5_hours\": \"4.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"12:15\",\n            \"week_1_day_6_hours\": \"8.00\",\n            \"week_1_day_6_start_time\": \"08:00\",\n            \"week_1_day_6_end_time\": \"17:00\",\n            \"week_1_day_7_hours\": \"8.00\",\n            \"week_1_day_7_start_time\": \"08:00\",\n            \"week_1_day_7_end_time\": \"17:00\",\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2024-11-25\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-11-25 11:44:43\",\n            \"updated_at\": \"2024-12-04 12:11:22\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 6.67,\n            \"hours_per_week\": 20,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 190607,\n            \"organization_id\": 39956,\n            \"employee_id\": 163665,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"07:00\",\n            \"week_1_day_5_end_time\": \"15:30\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": \"8.00\",\n            \"week_2_day_1_start_time\": \"07:00\",\n            \"week_2_day_1_end_time\": \"15:30\",\n            \"week_2_day_2_hours\": \"8.00\",\n            \"week_2_day_2_start_time\": \"07:00\",\n            \"week_2_day_2_end_time\": \"15:30\",\n            \"week_2_day_3_hours\": \"8.00\",\n            \"week_2_day_3_start_time\": \"07:00\",\n            \"week_2_day_3_end_time\": \"15:30\",\n            \"week_2_day_4_hours\": \"8.00\",\n            \"week_2_day_4_start_time\": \"07:00\",\n            \"week_2_day_4_end_time\": \"15:30\",\n            \"week_2_day_5_hours\": \"8.00\",\n            \"week_2_day_5_start_time\": \"07:00\",\n            \"week_2_day_5_end_time\": \"15:30\",\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2007-05-01\",\n            \"end_date\": \"2025-01-05\",\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-12-04 13:17:13\",\n            \"updated_at\": \"2025-01-07 14:10:49\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 40,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 190608,\n            \"organization_id\": 39956,\n            \"employee_id\": 163665,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"07:00\",\n            \"week_1_day_1_end_time\": \"15:30\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"07:00\",\n            \"week_1_day_2_end_time\": \"15:30\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"07:00\",\n            \"week_1_day_3_end_time\": \"15:30\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"07:00\",\n            \"week_1_day_4_end_time\": \"15:30\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": \"8.00\",\n            \"week_2_day_1_start_time\": \"07:00\",\n            \"week_2_day_1_end_time\": \"15:30\",\n            \"week_2_day_2_hours\": \"8.00\",\n            \"week_2_day_2_start_time\": \"07:00\",\n            \"week_2_day_2_end_time\": \"15:30\",\n            \"week_2_day_3_hours\": \"8.00\",\n            \"week_2_day_3_start_time\": \"07:00\",\n            \"week_2_day_3_end_time\": \"15:30\",\n            \"week_2_day_4_hours\": \"8.00\",\n            \"week_2_day_4_start_time\": \"07:00\",\n            \"week_2_day_4_end_time\": \"15:30\",\n            \"week_2_day_5_hours\": \"8.00\",\n            \"week_2_day_5_start_time\": \"07:00\",\n            \"week_2_day_5_end_time\": \"15:30\",\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2025-01-06\",\n            \"end_date\": null,\n            \"is_biweekly\": true,\n            \"created_at\": \"2024-12-04 13:17:57\",\n            \"updated_at\": \"2025-01-07 14:10:48\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 36,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 190609,\n            \"organization_id\": 39956,\n            \"employee_id\": 163708,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"09:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"09:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"09:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"09:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": null,\n            \"week_1_day_5_start_time\": null,\n            \"week_1_day_5_end_time\": null,\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2025-01-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-12-04 13:30:30\",\n            \"updated_at\": \"2024-12-04 13:30:30\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 192287,\n            \"organization_id\": 39956,\n            \"employee_id\": 163636,\n            \"week_1_day_1_hours\": null,\n            \"week_1_day_1_start_time\": null,\n            \"week_1_day_1_end_time\": null,\n            \"week_1_day_2_hours\": null,\n            \"week_1_day_2_start_time\": null,\n            \"week_1_day_2_end_time\": null,\n            \"week_1_day_3_hours\": \"8.00\",\n            \"week_1_day_3_start_time\": \"08:00\",\n            \"week_1_day_3_end_time\": \"17:00\",\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2025-01-01\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2024-12-20 09:08:47\",\n            \"updated_at\": \"2024-12-20 09:08:47\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 24,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        },\n        {\n            \"id\": 193208,\n            \"organization_id\": 39956,\n            \"employee_id\": 166588,\n            \"week_1_day_1_hours\": \"8.00\",\n            \"week_1_day_1_start_time\": \"08:00\",\n            \"week_1_day_1_end_time\": \"17:00\",\n            \"week_1_day_2_hours\": \"8.00\",\n            \"week_1_day_2_start_time\": \"08:00\",\n            \"week_1_day_2_end_time\": \"17:00\",\n            \"week_1_day_3_hours\": null,\n            \"week_1_day_3_start_time\": null,\n            \"week_1_day_3_end_time\": null,\n            \"week_1_day_4_hours\": \"8.00\",\n            \"week_1_day_4_start_time\": \"08:00\",\n            \"week_1_day_4_end_time\": \"17:00\",\n            \"week_1_day_5_hours\": \"8.00\",\n            \"week_1_day_5_start_time\": \"08:00\",\n            \"week_1_day_5_end_time\": \"17:00\",\n            \"week_1_day_6_hours\": null,\n            \"week_1_day_6_start_time\": null,\n            \"week_1_day_6_end_time\": null,\n            \"week_1_day_7_hours\": null,\n            \"week_1_day_7_start_time\": null,\n            \"week_1_day_7_end_time\": null,\n            \"week_2_day_1_hours\": null,\n            \"week_2_day_1_start_time\": null,\n            \"week_2_day_1_end_time\": null,\n            \"week_2_day_2_hours\": null,\n            \"week_2_day_2_start_time\": null,\n            \"week_2_day_2_end_time\": null,\n            \"week_2_day_3_hours\": null,\n            \"week_2_day_3_start_time\": null,\n            \"week_2_day_3_end_time\": null,\n            \"week_2_day_4_hours\": null,\n            \"week_2_day_4_start_time\": null,\n            \"week_2_day_4_end_time\": null,\n            \"week_2_day_5_hours\": null,\n            \"week_2_day_5_start_time\": null,\n            \"week_2_day_5_end_time\": null,\n            \"week_2_day_6_hours\": null,\n            \"week_2_day_6_start_time\": null,\n            \"week_2_day_6_end_time\": null,\n            \"week_2_day_7_hours\": null,\n            \"week_2_day_7_start_time\": null,\n            \"week_2_day_7_end_time\": null,\n            \"notes\": null,\n            \"start_date\": \"2025-01-08\",\n            \"end_date\": null,\n            \"is_biweekly\": false,\n            \"created_at\": \"2025-01-06 15:05:21\",\n            \"updated_at\": \"2025-01-08 12:48:07\",\n            \"processable\": null,\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_per_day\": 8,\n            \"hours_per_week\": 32,\n            \"is_first_week\": true,\n            \"is_second_week\": false\n        }\n    ]\n}"}],"_postman_id":"ab5d06c9-9162-49e7-bdc9-a8db6bb39a76"},{"name":"Work schedule","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"fb464554-08db-4fd1-af29-22519eef0c1a"}}],"id":"17f30bff-66ed-4847-a52d-272b97073fc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"week_1_day_1_hours\": \"8.00\",\n    \"week_1_day_1_start_time\": \"08:00\",\n    \"week_1_day_1_end_time\": \"17:00\",\n    \"week_1_day_2_hours\": \"8.00\",\n    \"week_1_day_2_start_time\": \"08:00\",\n    \"week_1_day_2_end_time\": \"17:00\",\n    \"week_1_day_3_hours\": \"8.00\",\n    \"week_1_day_3_start_time\": \"08:00\",\n    \"week_1_day_3_end_time\": \"17:00\",\n    \"week_1_day_4_hours\": \"8.00\",\n    \"week_1_day_4_start_time\": \"08:00\",\n    \"week_1_day_4_end_time\": \"17:00\",\n    \"week_1_day_5_hours\": null,\n    \"week_1_day_5_start_time\": null,\n    \"week_1_day_5_end_time\": null,\n    \"week_1_day_6_hours\": null,\n    \"week_1_day_6_start_time\": null,\n    \"week_1_day_6_end_time\": null,\n    \"week_1_day_7_hours\": null,\n    \"week_1_day_7_start_time\": null,\n    \"week_1_day_7_end_time\": null,\n    \"notes\": null,\n    \"start_date\": \"2025-01-01\",\n    \"end_date\": \"2025-02-01\",\n    \"is_biweekly\": false,\n    \"hours_per_day\": 8,\n    \"hours_per_week\": 32\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-schedules","urlObject":{"path":["work-schedules"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"9e311540-011b-4125-ae44-9e2b06ce72b6","name":"Work schedule","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"week_1_day_1_hours\": \"8.00\",\n    \"week_1_day_1_start_time\": \"08:00\",\n    \"week_1_day_1_end_time\": \"17:00\",\n    \"week_1_day_2_hours\": \"8.00\",\n    \"week_1_day_2_start_time\": \"08:00\",\n    \"week_1_day_2_end_time\": \"17:00\",\n    \"week_1_day_3_hours\": \"8.00\",\n    \"week_1_day_3_start_time\": \"08:00\",\n    \"week_1_day_3_end_time\": \"17:00\",\n    \"week_1_day_4_hours\": \"8.00\",\n    \"week_1_day_4_start_time\": \"08:00\",\n    \"week_1_day_4_end_time\": \"17:00\",\n    \"week_1_day_5_hours\": null,\n    \"week_1_day_5_start_time\": null,\n    \"week_1_day_5_end_time\": null,\n    \"week_1_day_6_hours\": null,\n    \"week_1_day_6_start_time\": null,\n    \"week_1_day_6_end_time\": null,\n    \"week_1_day_7_hours\": null,\n    \"week_1_day_7_start_time\": null,\n    \"week_1_day_7_end_time\": null,\n    \"notes\": null,\n    \"start_date\": \"2025-01-01\",\n    \"end_date\": \"2025-02-01\",\n    \"is_biweekly\": false,\n    \"hours_per_day\": 8,\n    \"hours_per_week\": 32\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 20 Jan 2025 10:37:57 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 194823,\n        \"organization_id\": 14799,\n        \"employee_id\": 138749,\n        \"week_1_day_1_hours\": \"8.00\",\n        \"week_1_day_1_start_time\": \"08:00\",\n        \"week_1_day_1_end_time\": \"17:00\",\n        \"week_1_day_2_hours\": \"8.00\",\n        \"week_1_day_2_start_time\": \"08:00\",\n        \"week_1_day_2_end_time\": \"17:00\",\n        \"week_1_day_3_hours\": \"8.00\",\n        \"week_1_day_3_start_time\": \"08:00\",\n        \"week_1_day_3_end_time\": \"17:00\",\n        \"week_1_day_4_hours\": \"8.00\",\n        \"week_1_day_4_start_time\": \"08:00\",\n        \"week_1_day_4_end_time\": \"17:00\",\n        \"week_1_day_5_hours\": null,\n        \"week_1_day_5_start_time\": null,\n        \"week_1_day_5_end_time\": null,\n        \"week_1_day_6_hours\": null,\n        \"week_1_day_6_start_time\": null,\n        \"week_1_day_6_end_time\": null,\n        \"week_1_day_7_hours\": null,\n        \"week_1_day_7_start_time\": null,\n        \"week_1_day_7_end_time\": null,\n        \"week_2_day_1_hours\": null,\n        \"week_2_day_1_start_time\": null,\n        \"week_2_day_1_end_time\": null,\n        \"week_2_day_2_hours\": null,\n        \"week_2_day_2_start_time\": null,\n        \"week_2_day_2_end_time\": null,\n        \"week_2_day_3_hours\": null,\n        \"week_2_day_3_start_time\": null,\n        \"week_2_day_3_end_time\": null,\n        \"week_2_day_4_hours\": null,\n        \"week_2_day_4_start_time\": null,\n        \"week_2_day_4_end_time\": null,\n        \"week_2_day_5_hours\": null,\n        \"week_2_day_5_start_time\": null,\n        \"week_2_day_5_end_time\": null,\n        \"week_2_day_6_hours\": null,\n        \"week_2_day_6_start_time\": null,\n        \"week_2_day_6_end_time\": null,\n        \"week_2_day_7_hours\": null,\n        \"week_2_day_7_start_time\": null,\n        \"week_2_day_7_end_time\": null,\n        \"notes\": null,\n        \"start_date\": \"2025-01-01\",\n        \"end_date\": null,\n        \"is_biweekly\": false,\n        \"created_at\": \"2025-01-20 10:37:57\",\n        \"updated_at\": \"2025-01-20 10:37:57\",\n        \"processable\": null,\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ],\n        \"hours_per_day\": 8,\n        \"hours_per_week\": 32,\n        \"is_first_week\": true,\n        \"is_second_week\": false\n    }\n}"}],"_postman_id":"17f30bff-66ed-4847-a52d-272b97073fc6"},{"name":"Work schedule","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"841d0073-5423-4396-8379-3d47270348cc"}}],"id":"db1d1715-8acb-45b5-a69b-549585a247a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"week_1_day_1_hours\": \"8.00\",\n    \"week_1_day_1_start_time\": \"07:00\",\n    \"week_1_day_1_end_time\": \"16:00\",\n    \"week_1_day_2_hours\": \"8.00\",\n    \"week_1_day_2_start_time\": \"08:00\",\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-schedules/194823","description":"<h3 id=\"update-time-registration\">Update Time Registration</h3>\n<p>This endpoint is used to update an existing time registration entry for an employee.</p>\n","urlObject":{"path":["work-schedules","194823"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"efcece39-98c4-4659-b029-41efff37800d","name":"Work schedule","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"week_1_day_1_hours\": \"8.00\",\n    \"week_1_day_1_start_time\": \"07:00\",\n    \"week_1_day_1_end_time\": \"16:00\",\n    \"week_1_day_2_hours\": \"8.00\",\n    \"week_1_day_2_start_time\": \"08:00\",\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-schedules/194823"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 20 Jan 2025 10:38:55 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 194823,\n        \"organization_id\": 14799,\n        \"employee_id\": 138749,\n        \"week_1_day_1_hours\": \"8.00\",\n        \"week_1_day_1_start_time\": \"08:00\",\n        \"week_1_day_1_end_time\": \"17:00\",\n        \"week_1_day_2_hours\": \"8.00\",\n        \"week_1_day_2_start_time\": \"08:00\",\n        \"week_1_day_2_end_time\": \"17:00\",\n        \"week_1_day_3_hours\": \"8.00\",\n        \"week_1_day_3_start_time\": \"08:00\",\n        \"week_1_day_3_end_time\": \"17:00\",\n        \"week_1_day_4_hours\": \"8.00\",\n        \"week_1_day_4_start_time\": \"08:00\",\n        \"week_1_day_4_end_time\": \"17:00\",\n        \"week_1_day_5_hours\": null,\n        \"week_1_day_5_start_time\": null,\n        \"week_1_day_5_end_time\": null,\n        \"week_1_day_6_hours\": null,\n        \"week_1_day_6_start_time\": null,\n        \"week_1_day_6_end_time\": null,\n        \"week_1_day_7_hours\": null,\n        \"week_1_day_7_start_time\": null,\n        \"week_1_day_7_end_time\": null,\n        \"week_2_day_1_hours\": null,\n        \"week_2_day_1_start_time\": null,\n        \"week_2_day_1_end_time\": null,\n        \"week_2_day_2_hours\": null,\n        \"week_2_day_2_start_time\": null,\n        \"week_2_day_2_end_time\": null,\n        \"week_2_day_3_hours\": null,\n        \"week_2_day_3_start_time\": null,\n        \"week_2_day_3_end_time\": null,\n        \"week_2_day_4_hours\": null,\n        \"week_2_day_4_start_time\": null,\n        \"week_2_day_4_end_time\": null,\n        \"week_2_day_5_hours\": null,\n        \"week_2_day_5_start_time\": null,\n        \"week_2_day_5_end_time\": null,\n        \"week_2_day_6_hours\": null,\n        \"week_2_day_6_start_time\": null,\n        \"week_2_day_6_end_time\": null,\n        \"week_2_day_7_hours\": null,\n        \"week_2_day_7_start_time\": null,\n        \"week_2_day_7_end_time\": null,\n        \"notes\": null,\n        \"start_date\": \"2025-01-01\",\n        \"end_date\": null,\n        \"is_biweekly\": false,\n        \"created_at\": \"2025-01-20 10:37:57\",\n        \"updated_at\": \"2025-01-20 10:37:57\",\n        \"processable\": null,\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ],\n        \"hours_per_day\": 8,\n        \"hours_per_week\": 32,\n        \"is_first_week\": true,\n        \"is_second_week\": false\n    }\n}"}],"_postman_id":"db1d1715-8acb-45b5-a69b-549585a247a8"},{"name":"Work schedule","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"72999815-f095-4c7e-9044-a1b099d5fb3a"}}],"id":"676d18f0-4ef9-4df1-ada6-9be121da9ac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-schedules/194823","description":"<p>The HTTP DELETE request is used to delete a specific time registration entry for an employee with the ID 338163.</p>\n","urlObject":{"path":["work-schedules","194823"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"f907555a-ed90-4256-b007-97f8d75da579","name":"Work schedule","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-schedules/194823"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 20 Jan 2025 10:39:15 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"676d18f0-4ef9-4df1-ada6-9be121da9ac9"}],"id":"b7607cd5-452a-49e5-a057-72cdbfeed96a","description":"<h4 id=\"sortables\">Sortables</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>start_date</code></td>\n<td>Sorts by start_date.</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>Sorts by end_date</td>\n</tr>\n<tr>\n<td><code>is_biweekly</code></td>\n<td>Sorts by bi_weekly</td>\n</tr>\n<tr>\n<td><code>employee</code></td>\n<td>Sorts by the employee</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b7607cd5-452a-49e5-a057-72cdbfeed96a"},{"name":"Work location status","item":[{"name":"Work location status","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"requests":{},"id":"2f4172ad-b530-4646-8a99-85c801e5c8a1"}}],"id":"4f8397c4-9984-4344-94fb-74269445ff0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/work-location-statuses","urlObject":{"path":["work-location-statuses"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>ID of the employee you want to filter on</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Filter on start date</p>\n","type":"text/plain"},"key":"location_id","value":""},{"disabled":true,"description":{"content":"<p>Filter on end date</p>\n","type":"text/plain"},"key":"work_location","value":""},{"disabled":true,"key":"date","value":""},{"disabled":true,"key":"is_processed","value":""},{"disabled":true,"key":"active_in_period","value":""},{"disabled":true,"key":"approval_status","value":""},{"disabled":true,"key":"from","value":""},{"disabled":true,"key":"to","value":""},{"disabled":true,"key":"company_id","value":""},{"disabled":true,"key":"team","value":""}],"variable":[]}},"response":[{"id":"ee4edc6c-c0c7-4484-9630-6e9a1f96d13b","name":"Work location status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/work-location-statuses","host":["https://api.buddee.nl"],"path":["work-location-statuses"],"query":[{"key":"employee_id","value":"","description":"ID of the employee you want to filter on","type":"text","disabled":true},{"key":"location_id","value":"","description":"Filter on start date","type":"text","disabled":true},{"key":"work_location","value":"","description":"Filter on end date","type":"text","disabled":true},{"key":"date","value":"","type":"text","disabled":true},{"key":"is_processed","value":"","type":"text","disabled":true},{"key":"active_in_period","value":"","type":"text","disabled":true},{"key":"approval_status","value":"","type":"text","disabled":true},{"key":"from","value":"","type":"text","disabled":true},{"key":"to","value":"","type":"text","disabled":true},{"key":"company_id","value":"","type":"text","disabled":true},{"key":"team","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 06 Aug 2025 13:40:44 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"meta\": {\n        \"count\": 12389,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 62\n    },\n    \"data\": [\n        {\n            \"id\": 180091,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-07-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-07-14 11:33:17\",\n            \"updated_at\": \"2023-07-14 11:33:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 189300,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-07 08:34:38\",\n            \"updated_at\": \"2023-08-07 08:34:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 190184,\n            \"organization_id\": 39271,\n            \"employee_id\": 146833,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-07 12:28:10\",\n            \"updated_at\": \"2023-08-07 12:28:10\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 190215,\n            \"organization_id\": 39271,\n            \"employee_id\": 146832,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-07 12:53:01\",\n            \"updated_at\": \"2023-08-07 12:53:01\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 190901,\n            \"organization_id\": 39271,\n            \"employee_id\": 146833,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-11 08:14:35\",\n            \"updated_at\": \"2023-08-11 08:19:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 192738,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-23 09:41:43\",\n            \"updated_at\": \"2023-08-23 09:41:43\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 193295,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-28 06:54:10\",\n            \"updated_at\": \"2023-08-28 06:54:10\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 193918,\n            \"organization_id\": 39271,\n            \"employee_id\": 145994,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-31 07:46:56\",\n            \"updated_at\": \"2023-08-31 07:46:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194002,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-31 14:18:50\",\n            \"updated_at\": \"2023-08-31 14:18:50\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194003,\n            \"organization_id\": 39271,\n            \"employee_id\": 147605,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-31 14:21:14\",\n            \"updated_at\": \"2023-08-31 14:21:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194004,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-08-31 14:25:05\",\n            \"updated_at\": \"2023-08-31 14:25:05\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194009,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-01 07:01:11\",\n            \"updated_at\": \"2023-09-01 07:01:11\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194702,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194703,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194704,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194705,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194706,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194707,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194708,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194709,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194710,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194711,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194712,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194713,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194714,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 197042,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-11-08 09:56:39\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194715,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194716,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194717,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196958,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-11-08 09:58:47\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194718,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194719,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194720,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194721,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194722,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:18:36\",\n            \"updated_at\": \"2023-09-07 07:18:36\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194755,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194756,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194757,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194758,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194759,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194760,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194761,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194762,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:54:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194763,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:54:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194764,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:54:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194765,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:54:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194766,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:54:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194767,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:54:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194768,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:54:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194769,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196958,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-11-08 09:58:48\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194770,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2023-09-07 07:21:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194771,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2024-01-11 09:06:31\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194772,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2024-01-11 09:06:58\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194773,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2024-01-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2024-01-11 09:07:13\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194774,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2024-02-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-07 07:21:35\",\n            \"updated_at\": \"2024-01-29 09:23:22\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194896,\n            \"organization_id\": 39271,\n            \"employee_id\": 146926,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 07:08:46\",\n            \"updated_at\": \"2023-09-08 07:08:46\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194897,\n            \"organization_id\": 39271,\n            \"employee_id\": 146926,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 07:08:49\",\n            \"updated_at\": \"2023-09-08 07:08:49\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194898,\n            \"organization_id\": 39271,\n            \"employee_id\": 146926,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 07:08:53\",\n            \"updated_at\": \"2023-09-08 07:08:53\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194900,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 07:17:15\",\n            \"updated_at\": \"2023-09-08 07:17:15\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194901,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 07:17:15\",\n            \"updated_at\": \"2023-09-08 07:17:15\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194902,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 07:17:15\",\n            \"updated_at\": \"2023-09-08 07:17:15\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194953,\n            \"organization_id\": 39271,\n            \"employee_id\": 146809,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 07:22:49\",\n            \"updated_at\": \"2023-09-08 07:22:49\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194980,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194981,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194982,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194983,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194984,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194985,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194986,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194987,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-30\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194988,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194989,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194990,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194991,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194992,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194993,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194994,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194995,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:17\",\n            \"updated_at\": \"2023-09-08 09:15:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194996,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194997,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194998,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 194999,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195000,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195001,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195002,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195003,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195004,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195005,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195006,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195007,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195008,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195009,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195010,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195011,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:38\",\n            \"updated_at\": \"2023-09-08 09:15:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195012,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195013,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195014,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195015,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195016,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195017,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195018,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195019,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195020,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195021,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195022,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195023,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195025,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195026,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195027,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:15:56\",\n            \"updated_at\": \"2023-09-08 09:15:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195028,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195029,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195030,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195031,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195032,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195033,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195034,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195035,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195036,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195037,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195038,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195039,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-30\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195040,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195041,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-12-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-12-06 10:33:46\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195042,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195043,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:14\",\n            \"updated_at\": \"2023-09-08 09:16:14\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195044,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195045,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195046,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195047,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195048,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195049,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195050,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195051,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195052,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195053,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195054,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195055,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195056,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-12-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-12-06 10:33:37\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195057,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195058,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195059,\n            \"organization_id\": 39271,\n            \"employee_id\": 146805,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-12-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-08 09:16:29\",\n            \"updated_at\": \"2023-09-08 09:16:29\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195132,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 09:12:28\",\n            \"updated_at\": \"2023-09-11 09:12:32\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195133,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 09:12:55\",\n            \"updated_at\": \"2023-09-11 09:12:55\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195134,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 09:12:58\",\n            \"updated_at\": \"2023-09-11 09:12:58\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195135,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 09:13:01\",\n            \"updated_at\": \"2023-09-11 09:13:01\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195136,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 09:13:04\",\n            \"updated_at\": \"2023-09-11 09:13:04\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195149,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 11:55:12\",\n            \"updated_at\": \"2023-09-11 11:55:12\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195155,\n            \"organization_id\": 39271,\n            \"employee_id\": 148399,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:17:54\",\n            \"updated_at\": \"2023-09-11 12:17:54\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195156,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:18:04\",\n            \"updated_at\": \"2023-09-11 12:18:24\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195157,\n            \"organization_id\": 39271,\n            \"employee_id\": 148399,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:18:09\",\n            \"updated_at\": \"2023-09-11 12:18:09\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195158,\n            \"organization_id\": 39271,\n            \"employee_id\": 148399,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:18:13\",\n            \"updated_at\": \"2023-09-11 12:18:13\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195159,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:18:27\",\n            \"updated_at\": \"2023-09-11 12:18:27\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195160,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:18:38\",\n            \"updated_at\": \"2023-09-11 12:18:38\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195161,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:20:22\",\n            \"updated_at\": \"2023-09-11 12:20:22\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195162,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 12:20:23\",\n            \"updated_at\": \"2023-09-11 12:20:23\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 195958,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-11 13:39:50\",\n            \"updated_at\": \"2023-09-11 13:39:50\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196078,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-12 09:06:57\",\n            \"updated_at\": \"2023-09-12 09:06:57\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196079,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-12 09:07:00\",\n            \"updated_at\": \"2023-09-12 09:07:00\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196080,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-12 09:07:04\",\n            \"updated_at\": \"2023-09-12 09:07:04\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196081,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-12 09:07:06\",\n            \"updated_at\": \"2023-09-12 09:07:06\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196082,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-12 09:07:09\",\n            \"updated_at\": \"2023-09-12 09:07:09\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196218,\n            \"organization_id\": 39271,\n            \"employee_id\": 147928,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-14 15:03:21\",\n            \"updated_at\": \"2023-09-14 15:03:21\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196219,\n            \"organization_id\": 39271,\n            \"employee_id\": 147928,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-14 15:03:23\",\n            \"updated_at\": \"2023-09-14 15:03:23\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196227,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 08:40:53\",\n            \"updated_at\": \"2023-09-15 08:40:53\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196228,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 08:40:56\",\n            \"updated_at\": \"2023-09-15 08:40:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196229,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 08:41:01\",\n            \"updated_at\": \"2023-09-15 08:41:01\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196230,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 08:41:05\",\n            \"updated_at\": \"2023-09-15 08:41:05\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196231,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 08:41:08\",\n            \"updated_at\": \"2023-09-15 08:41:08\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196232,\n            \"organization_id\": 39271,\n            \"employee_id\": 147928,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:01:43\",\n            \"updated_at\": \"2023-09-15 09:01:43\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196234,\n            \"organization_id\": 39271,\n            \"employee_id\": 147928,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:02:06\",\n            \"updated_at\": \"2023-09-15 09:02:06\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196235,\n            \"organization_id\": 39271,\n            \"employee_id\": 147928,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:02:12\",\n            \"updated_at\": \"2023-09-15 09:02:12\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196236,\n            \"organization_id\": 39271,\n            \"employee_id\": 147928,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:02:24\",\n            \"updated_at\": \"2023-09-15 09:02:24\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196237,\n            \"organization_id\": 39271,\n            \"employee_id\": 148399,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:06:06\",\n            \"updated_at\": \"2023-09-15 09:06:06\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196238,\n            \"organization_id\": 39271,\n            \"employee_id\": 148399,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:06:17\",\n            \"updated_at\": \"2023-09-15 09:06:17\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196239,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:43:01\",\n            \"updated_at\": \"2023-09-15 09:43:01\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196240,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:43:19\",\n            \"updated_at\": \"2023-09-15 09:43:19\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196241,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196945,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:43:30\",\n            \"updated_at\": \"2023-09-15 09:43:30\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196242,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:43:48\",\n            \"updated_at\": \"2023-09-15 09:43:48\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196243,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:44:58\",\n            \"updated_at\": \"2023-09-15 09:46:04\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196244,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:05\",\n            \"updated_at\": \"2023-09-15 09:45:59\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196245,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:14\",\n            \"updated_at\": \"2023-09-15 09:45:55\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196246,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:18\",\n            \"updated_at\": \"2023-09-15 09:45:18\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196247,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:24\",\n            \"updated_at\": \"2023-09-15 09:45:24\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196248,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:27\",\n            \"updated_at\": \"2023-09-15 09:45:27\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196249,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:31\",\n            \"updated_at\": \"2023-09-15 09:45:31\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196250,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:35\",\n            \"updated_at\": \"2023-09-15 09:45:35\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196251,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:39\",\n            \"updated_at\": \"2023-09-15 09:45:39\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196252,\n            \"organization_id\": 39271,\n            \"employee_id\": 146927,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 09:45:43\",\n            \"updated_at\": \"2023-09-15 09:45:43\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196260,\n            \"organization_id\": 39271,\n            \"employee_id\": 148399,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-15 14:46:02\",\n            \"updated_at\": \"2023-09-15 14:46:02\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196274,\n            \"organization_id\": 39271,\n            \"employee_id\": 147607,\n            \"location_id\": 196898,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:35:51\",\n            \"updated_at\": \"2023-09-18 06:35:51\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196275,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:45:56\",\n            \"updated_at\": \"2023-09-18 06:45:56\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196276,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:47:31\",\n            \"updated_at\": \"2023-09-18 06:47:31\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196278,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:53:43\",\n            \"updated_at\": \"2023-09-18 06:53:43\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196279,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196898,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:53:46\",\n            \"updated_at\": \"2023-10-05 12:39:13\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196280,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:55:01\",\n            \"updated_at\": \"2023-09-18 06:55:01\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196281,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:55:05\",\n            \"updated_at\": \"2023-09-18 06:55:05\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196282,\n            \"organization_id\": 39271,\n            \"employee_id\": 148393,\n            \"location_id\": 196842,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 06:56:51\",\n            \"updated_at\": \"2023-10-16 08:20:31\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196334,\n            \"organization_id\": 39271,\n            \"employee_id\": 146925,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 08:19:55\",\n            \"updated_at\": \"2023-09-18 08:19:55\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196335,\n            \"organization_id\": 39271,\n            \"employee_id\": 146925,\n            \"location_id\": 196958,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 08:20:19\",\n            \"updated_at\": \"2023-10-16 08:43:44\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196336,\n            \"organization_id\": 39271,\n            \"employee_id\": 146925,\n            \"location_id\": 196958,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 08:20:19\",\n            \"updated_at\": \"2023-10-16 08:43:51\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196337,\n            \"organization_id\": 39271,\n            \"employee_id\": 146925,\n            \"location_id\": 196958,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 08:20:19\",\n            \"updated_at\": \"2023-10-16 08:44:08\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196338,\n            \"organization_id\": 39271,\n            \"employee_id\": 146925,\n            \"location_id\": 196958,\n            \"work_location\": \"office\",\n            \"date\": \"2023-11-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2023-09-18 08:20:19\",\n            \"updated_at\": \"2023-10-16 08:44:08\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"4f8397c4-9984-4344-94fb-74269445ff0f"},{"name":"Add work location status","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"6ae0fcd3-1e7e-4ff0-a19c-5248c84b19a9"}}],"id":"1fab2037-b81e-45e9-913d-e4518166a417","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"week_1_day_1_hours\": \"8.00\",\n    \"week_1_day_1_start_time\": \"08:00\",\n    \"week_1_day_1_end_time\": \"17:00\",\n    \"week_1_day_2_hours\": \"8.00\",\n    \"week_1_day_2_start_time\": \"08:00\",\n    \"week_1_day_2_end_time\": \"17:00\",\n    \"week_1_day_3_hours\": \"8.00\",\n    \"week_1_day_3_start_time\": \"08:00\",\n    \"week_1_day_3_end_time\": \"17:00\",\n    \"week_1_day_4_hours\": \"8.00\",\n    \"week_1_day_4_start_time\": \"08:00\",\n    \"week_1_day_4_end_time\": \"17:00\",\n    \"week_1_day_5_hours\": null,\n    \"week_1_day_5_start_time\": null,\n    \"week_1_day_5_end_time\": null,\n    \"week_1_day_6_hours\": null,\n    \"week_1_day_6_start_time\": null,\n    \"week_1_day_6_end_time\": null,\n    \"week_1_day_7_hours\": null,\n    \"week_1_day_7_start_time\": null,\n    \"week_1_day_7_end_time\": null,\n    \"notes\": null,\n    \"start_date\": \"2025-01-01\",\n    \"end_date\": \"2025-02-01\",\n    \"is_biweekly\": false,\n    \"hours_per_day\": 8,\n    \"hours_per_week\": 32\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses","urlObject":{"path":["work-location-statuses"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"d841e6a9-2ecb-47fc-be40-50268fca98fe","name":"Worklocation status","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2029-08-12\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 06 Aug 2025 13:41:50 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 458863,\n        \"organization_id\": 39271,\n        \"employee_id\": 146846,\n        \"location_id\": null,\n        \"work_location\": \"home\",\n        \"date\": \"2029-08-12\",\n        \"is_processed\": false,\n        \"processed_at\": null,\n        \"created_at\": \"2025-08-06 13:41:49\",\n        \"updated_at\": \"2025-08-06 13:41:49\",\n        \"approval\": {\n            \"id\": 916782,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"expense_id\": null,\n            \"leave_request_id\": null,\n            \"leave_scheme_id\": null,\n            \"time_registration_id\": null,\n            \"trip_registration_id\": null,\n            \"work_location_status_id\": 458863,\n            \"approver_id\": null,\n            \"status\": \"pending\",\n            \"comments\": null,\n            \"auto_approval_date\": null,\n            \"is_sequential\": false,\n            \"status_changed_at\": null,\n            \"created_at\": \"2025-08-06 13:41:49\",\n            \"updated_at\": \"2025-08-06 13:41:49\",\n            \"_permissions\": [\n                \"read\",\n                \"update\"\n            ]\n        },\n        \"_permissions\": [\n            \"attribute.is_processed\",\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"1fab2037-b81e-45e9-913d-e4518166a417"},{"name":"Update work location status","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"061cc7e7-3acc-4088-b11e-5776a51eb7ce"}}],"id":"6db5485a-4223-4409-b2db-458edc6c82da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"employee_id\": 138749,\n    \"week_1_day_1_hours\": \"8.00\",\n    \"week_1_day_1_start_time\": \"07:00\",\n    \"week_1_day_1_end_time\": \"16:00\",\n    \"week_1_day_2_hours\": \"8.00\",\n    \"week_1_day_2_start_time\": \"08:00\",\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/180091","description":"<h3 id=\"update-work-location-status\">Update work location status</h3>\n<p>This endpoint is used to update an work location status</p>\n","urlObject":{"path":["work-location-statuses","180091"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"5fe7aab5-c625-4950-b04c-dfc76d57183b","name":"Work location status","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n            \"work_location\": \"home\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/180091"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 06 Aug 2025 13:42:43 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true,\n    \"data\": {\n        \"id\": 180091,\n        \"organization_id\": 39271,\n        \"employee_id\": 146805,\n        \"location_id\": 196842,\n        \"work_location\": \"home\",\n        \"date\": \"2023-07-14\",\n        \"is_processed\": false,\n        \"processed_at\": null,\n        \"created_at\": \"2023-07-14 11:33:17\",\n        \"updated_at\": \"2025-08-06 13:42:43\",\n        \"approval\": null,\n        \"_permissions\": [\n            \"attribute.is_processed\",\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"report\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"6db5485a-4223-4409-b2db-458edc6c82da"},{"name":"Delete work location status","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"6f871d77-8142-42a6-a00d-50fd4699a486"}}],"id":"375aa598-81cd-4a8a-972d-6bb5edf1e496","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/180091","description":"<p>The HTTP DELETE request is used to delete a specfic work location status</p>\n","urlObject":{"path":["work-location-statuses","180091"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"23a93912-ba60-4e57-9e66-38b3d3fedb78","name":"Work location status","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/180091"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 06 Aug 2025 13:43:01 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Allow-Headers","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ok\": true\n}"}],"_postman_id":"375aa598-81cd-4a8a-972d-6bb5edf1e496"}],"id":"8968b3ed-d22e-49e0-9423-c2f513e94625","description":"<h4 id=\"sortables\">Sortables</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>date</code></td>\n<td>Sorts by date.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8968b3ed-d22e-49e0-9423-c2f513e94625"},{"name":"Approvals","item":[{"name":"Approvals","id":"9caa0280-470b-430b-9efa-73a98c4a2d5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"9caa0280-470b-430b-9efa-73a98c4a2d5d"}],"id":"dd8d121d-4527-4b8c-81e8-2ef6dd81f6db","_postman_id":"dd8d121d-4527-4b8c-81e8-2ef6dd81f6db","description":""},{"name":"Projects","item":[{"name":"Projects","id":"cfd283c4-156a-4e05-a703-addfeec2b840","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/projects","description":"<p>Retrieves all projects.</p>\n","urlObject":{"path":["projects"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Filter projects by client ID.</p>\n","type":"text/plain"},"key":"client_id","value":""},{"disabled":true,"description":{"content":"<p>Filter projects by regular rate card ID.</p>\n","type":"text/plain"},"key":"regular_rate_card_id","value":""},{"disabled":true,"description":{"content":"<p>Filter projects by overtime rate card ID.</p>\n","type":"text/plain"},"key":"overtime_rate_card_id","value":""},{"disabled":true,"description":{"content":"<p>Filter projects by name.</p>\n","type":"text/plain"},"key":"name","value":""}],"variable":[]}},"response":[],"_postman_id":"cfd283c4-156a-4e05-a703-addfeec2b840"},{"name":"Project","id":"99a72d78-4713-4bf2-b54e-8136ee7a63a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/projects/84210","description":"<p>Retrieves a single project.</p>\n","urlObject":{"path":["projects","84210"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"99a72d78-4713-4bf2-b54e-8136ee7a63a3"},{"name":"Create project","id":"fefadcf6-c380-4cbb-9455-67a692bad241","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Website redesign\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/projects","description":"<p><strong>Creates a project</strong></p>\n<p>The JSON example shows the minimum required field to create a project.</p>\n","urlObject":{"path":["projects"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"fefadcf6-c380-4cbb-9455-67a692bad241"},{"name":"Update project","id":"8559875c-2ca0-41f5-8007-7e5e38e1683e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Website redesign 2.0\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/projects/84210","description":"<p>Updates a project.</p>\n","urlObject":{"path":["projects","84210"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"8559875c-2ca0-41f5-8007-7e5e38e1683e"},{"name":"Delete project","id":"69a4ac6e-940b-4b05-a91f-66393122b8e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/projects/84210","description":"<p>Deletes a single project.</p>\n","urlObject":{"path":["projects","84210"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"69a4ac6e-940b-4b05-a91f-66393122b8e6"}],"id":"3ae6a4c4-7288-4318-bd57-6a080d437dd9","_postman_id":"3ae6a4c4-7288-4318-bd57-6a080d437dd9","description":""},{"name":"Assets","item":[{"name":"Asset documents","item":[{"name":"Asset documents","id":"a7fe20cb-1337-4530-862a-7282b7bcf062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/asset-documents","description":"<p>Retrieves all asset documents.</p>\n","urlObject":{"path":["asset-documents"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Filter asset documents by asset ID.</p>\n","type":"text/plain"},"key":"asset_id","value":""}],"variable":[]}},"response":[],"_postman_id":"a7fe20cb-1337-4530-862a-7282b7bcf062"},{"name":"Asset document","id":"26ebdfb8-402d-412d-bd8a-20c4ebdb9558","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/asset-documents/530112","description":"<p>Retrieves a single asset document.</p>\n","urlObject":{"path":["asset-documents","530112"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"26ebdfb8-402d-412d-bd8a-20c4ebdb9558"},{"name":"Update asset document","id":"3a703c08-f06a-474f-89cd-f76170adb5dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Warranty.pdf\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/asset-documents/530112","description":"<p>Updates an asset document's name.</p>\n<p>Note: creating an asset document requires a multipart file upload (the <code>body</code> field, validated by <code>MimesRule</code>) which isn't captured by this example — there's no existing multipart request in this collection to model it on.</p>\n","urlObject":{"path":["asset-documents","530112"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a703c08-f06a-474f-89cd-f76170adb5dc"},{"name":"Delete asset document","id":"967796bc-505e-4798-8562-6352dba08609","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/asset-documents/530112","description":"<p>Deletes a single asset document.</p>\n","urlObject":{"path":["asset-documents","530112"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"967796bc-505e-4798-8562-6352dba08609"}],"id":"f6f4ee34-a8cf-4e50-b124-a9b628dc3898","_postman_id":"f6f4ee34-a8cf-4e50-b124-a9b628dc3898","description":""},{"name":"Assets","id":"8aa061ac-320c-42a0-a260-e98e15685254","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/assets","description":"<p>Retrieves all assets.</p>\n","urlObject":{"path":["assets"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Filter assets by asset type ID.</p>\n","type":"text/plain"},"key":"asset_type_id","value":""},{"disabled":true,"description":{"content":"<p>Filter assets by employee ID.</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Filter assets by location ID.</p>\n","type":"text/plain"},"key":"location_id","value":""},{"disabled":true,"description":{"content":"<p>Filter assets by name.</p>\n","type":"text/plain"},"key":"name","value":""}],"variable":[]}},"response":[],"_postman_id":"8aa061ac-320c-42a0-a260-e98e15685254"},{"name":"Asset","id":"67224d3d-1bb6-4a15-9598-b8979731bb49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/assets/215430","description":"<p>Retrieves a single asset.</p>\n","urlObject":{"path":["assets","215430"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"67224d3d-1bb6-4a15-9598-b8979731bb49"},{"name":"Create asset","id":"280cad37-e899-450d-bb54-af0f9158c233","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"asset_type_id\": \"{{ asset_type_id }}\",\n  \"name\": \"MacBook Pro 16\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/assets","description":"<p><strong>Creates an asset</strong></p>\n<p>No field is strictly required by validation, but <code>name</code> (and usually <code>asset_type_id</code>) is the practical minimum for a usable record.</p>\n","urlObject":{"path":["assets"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"280cad37-e899-450d-bb54-af0f9158c233"},{"name":"Update asset","id":"0d8a83ef-fcd6-491a-93b6-7e45e0bcd356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"employee_id\": \"{{ employee_id }}\",\n  \"end_date\": \"2026-12-31\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/assets/215430","description":"<p>Updates an asset.</p>\n","urlObject":{"path":["assets","215430"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d8a83ef-fcd6-491a-93b6-7e45e0bcd356"},{"name":"Delete asset","id":"5ef150e0-3b4c-4060-a421-677f42f8d3c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/assets/215430","description":"<p>Deletes a single asset.</p>\n","urlObject":{"path":["assets","215430"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ef150e0-3b4c-4060-a421-677f42f8d3c4"}],"id":"77ca9c54-f0a2-4786-a056-d15c77245682","_postman_id":"77ca9c54-f0a2-4786-a056-d15c77245682","description":""},{"name":"Clients","item":[{"name":"Clients","id":"5235f7cb-29d9-4435-a61c-ee52fd94f40d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/clients","description":"<p>Retrieves all clients.</p>\n","urlObject":{"path":["clients"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"name"},{"disabled":true,"description":{"content":"<p>Filter clients by name.</p>\n","type":"text/plain"},"key":"name","value":""}],"variable":[]}},"response":[],"_postman_id":"5235f7cb-29d9-4435-a61c-ee52fd94f40d"},{"name":"Client","id":"99485098-a216-43b8-a0e3-3c127f227775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/clients/62310","description":"<p>Retrieves a single client.</p>\n","urlObject":{"path":["clients","62310"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"99485098-a216-43b8-a0e3-3c127f227775"},{"name":"Create client","id":"f8176b82-4980-4331-abdf-94be7f30ddac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Acme Corp\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/clients","description":"<p><strong>Creates a client</strong></p>\n<p>The JSON example shows the minimum required field to create a client.</p>\n","urlObject":{"path":["clients"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8176b82-4980-4331-abdf-94be7f30ddac"},{"name":"Update client","id":"c3540533-c217-4422-a265-c3b6cbc0c2e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Acme Corporation\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/clients/62310","description":"<p>Updates a client.</p>\n","urlObject":{"path":["clients","62310"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3540533-c217-4422-a265-c3b6cbc0c2e9"},{"name":"Delete client","id":"8c469e52-b567-4aeb-b6cd-a5647a0a53a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/clients/62310","description":"<p>Deletes a single client.</p>\n","urlObject":{"path":["clients","62310"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c469e52-b567-4aeb-b6cd-a5647a0a53a3"}],"id":"2affd3a3-9ad2-4484-8a5c-38ae51979ce3","_postman_id":"2affd3a3-9ad2-4484-8a5c-38ae51979ce3","description":""},{"name":"Organization settings","item":[{"name":"Organization settings","id":"81de8700-ccc1-4a73-85ab-c9e87a72893c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/organization-settings","description":"<p>Retrieves the organization settings. Every organization has exactly one settings record.</p>\n","urlObject":{"path":["organization-settings"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"id"}],"variable":[]}},"response":[],"_postman_id":"81de8700-ccc1-4a73-85ab-c9e87a72893c"},{"name":"Organization setting","id":"ad46c19e-4110-4cc7-9a4a-f87e0d5ce5f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/organization-settings/14520","description":"<p>Retrieves a single organization settings record.</p>\n","urlObject":{"path":["organization-settings","14520"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad46c19e-4110-4cc7-9a4a-f87e0d5ce5f3"},{"name":"Update organization settings","id":"6ee6aa6d-57ce-4ecc-adfd-8ff51858e0bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"do_require_2fa\": true,\n  \"do_restrict_employees_to_company\": true\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/organization-settings/14520","description":"<p><strong>Updates the organization settings</strong></p>\n<p>Available boolean settings: <code>do_grant_support_access</code>, <code>do_group_leave_types</code>, <code>do_require_2fa</code>, <code>do_use_custom_colors</code> and <code>do_restrict_employees_to_company</code>. When <code>do_restrict_employees_to_company</code> is enabled, non-admin users only see employees of their own company; employees within their role scope (manager hierarchy and explicit role grants) stay visible.</p>\n","urlObject":{"path":["organization-settings","14520"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ee6aa6d-57ce-4ecc-adfd-8ff51858e0bc"}],"id":"dc20b870-a1b8-41c5-b901-3ea022f7770c","_postman_id":"dc20b870-a1b8-41c5-b901-3ea022f7770c","description":""},{"name":"Wage components","item":[{"name":"Wage component types","item":[{"name":"Wage component types","id":"992e0573-09bd-4529-b358-d4e66a88a8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/wage-component-types","description":"<p>Retrieves all wage component types.</p>\n","urlObject":{"path":["wage-component-types"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filters by name.</p>\n","type":"text/plain"},"key":"name","value":""},{"disabled":true,"description":{"content":"<p>Filters by code.</p>\n","type":"text/plain"},"key":"code","value":""},{"disabled":true,"description":{"content":"<p>Filters to wage component types that are currently active for the organization.</p>\n","type":"text/plain"},"key":"active","value":"true"},{"disabled":true,"description":{"content":"<p>Filters to periodic (recurring) wage component types.</p>\n","type":"text/plain"},"key":"periodic","value":"true"},{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"name"}],"variable":[]}},"response":[],"_postman_id":"992e0573-09bd-4529-b358-d4e66a88a8d3"},{"name":"Wage component type","id":"68fa7eed-a4f2-499f-85a1-85563d6f73c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/wage-component-types/10230","description":"<p>Retrieves a single wage component type.</p>\n","urlObject":{"path":["wage-component-types","10230"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"68fa7eed-a4f2-499f-85a1-85563d6f73c3"},{"name":"Create wage component type","id":"00f79d35-c643-4f16-9539-0584ebf45fe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"Travel allowance\",\n  \"code\": \"TRAVEL\",\n  \"type\": \"amount\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/wage-component-types","description":"<p><strong>Creates a wage component type</strong></p>\n<p><code>type</code> determines how the value entered on a wage component is interpreted: <code>amount</code> (a fixed monetary amount), <code>number</code> (a quantity) or <code>day</code> (a number of days).</p>\n<p><code>calculation_type</code> is optional and controls how the amount is derived instead of entered directly: <code>fixed_amount</code> (always uses <code>fixed_amount</code>, which becomes required), <code>hourly_wage</code> (a <code>percentage</code> of the employee's hourly wage, which becomes required) or <code>max_value</code> (caps the entered value).</p>\n","urlObject":{"path":["wage-component-types"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"00f79d35-c643-4f16-9539-0584ebf45fe5"},{"name":"Update wage component type","id":"50bb1779-97d5-4d6f-af1f-4a40b981ddae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"calculation_type\": \"fixed_amount\",\n  \"fixed_amount\": 75\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/wage-component-types/10230","description":"<p>Updates a wage component type.</p>\n","urlObject":{"path":["wage-component-types","10230"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"50bb1779-97d5-4d6f-af1f-4a40b981ddae"},{"name":"Delete wage component type","id":"52388c6b-19e2-409a-ad2e-bf1df546356c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/wage-component-types/10230","description":"<p>Deletes a wage component type. Fails if it is still in use by an expense category, trip registration type, leave scheme or an existing wage component.</p>\n","urlObject":{"path":["wage-component-types","10230"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"52388c6b-19e2-409a-ad2e-bf1df546356c"}],"id":"abb1b424-bcde-4c71-a1ec-b1c0beb95cc1","_postman_id":"abb1b424-bcde-4c71-a1ec-b1c0beb95cc1","description":""},{"name":"Wage components","item":[{"name":"Wage components","id":"f88708c2-45ae-4e43-86cd-17f9cae38fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/wage-components","description":"<p><strong>Retrieves all wage components</strong></p>\n<p><code>calculated_amount</code> is computed automatically from <code>value</code> (and, for hourly-wage-based types, <code>hourly_wage</code>) and cannot be set directly.</p>\n","urlObject":{"path":["wage-components"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"description":{"content":"<p>Filters by employee.</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Filters by wage component type.</p>\n","type":"text/plain"},"key":"wage_component_type_id","value":""},{"disabled":true,"description":{"content":"<p>Filters by start date.</p>\n","type":"text/plain"},"key":"start_date","value":""},{"disabled":true,"description":{"content":"<p>Filters by end date.</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>Filters by deletion date. Use :not_null to only get deleted wage components.</p>\n","type":"text/plain"},"key":"deleted_at","value":""},{"disabled":true,"description":{"content":"<p>Filters to wage components that are currently active.</p>\n","type":"text/plain"},"key":"active","value":"true"},{"disabled":true,"description":{"content":"<p>Filters to wage components that are currently active or start in the future.</p>\n","type":"text/plain"},"key":"active_or_future","value":"true"},{"disabled":true,"description":{"content":"<p>Filters to wage components active within a specific period, e.g. between:2026-08-01,2026-08-31.</p>\n","type":"text/plain"},"key":"active_in_period","value":"between:2026-08-01,2026-08-31"},{"disabled":true,"description":{"content":"<p>Filters to wage components that have already ended.</p>\n","type":"text/plain"},"key":"expired","value":"true"},{"disabled":true,"description":{"content":"<p>Filters to wage components that start in the future.</p>\n","type":"text/plain"},"key":"future","value":"true"},{"disabled":true,"description":{"content":"<p>Filters to wage components active within a given payroll's period.</p>\n","type":"text/plain"},"key":"payroll","value":""},{"disabled":true,"description":{"content":"<p>Filters by status: active, active_or_future, expired or future.</p>\n","type":"text/plain"},"key":"status","value":"active"},{"disabled":true,"description":{"content":"<p>Set's the sort order</p>\n","type":"text/plain"},"key":"sort","value":"start_date"}],"variable":[]}},"response":[],"_postman_id":"f88708c2-45ae-4e43-86cd-17f9cae38fb5"},{"name":"Wage component","id":"403a7400-8211-4581-8ae9-626fc7ff312a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/wage-components/348210","description":"<p>Retrieves a single wage component.</p>\n","urlObject":{"path":["wage-components","348210"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"403a7400-8211-4581-8ae9-626fc7ff312a"},{"name":"Create wage component","id":"5428d66b-3043-4883-bec5-1187d993dc63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employee_id\": 145230,\n  \"wage_component_type_id\": 10230,\n  \"start_date\": \"2026-08-01\",\n  \"end_date\": \"2026-08-31\",\n  \"value\": 250\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/wage-components","description":"<p><strong>Creates a wage component</strong></p>\n<p>There is no separate \"variable\" setting — whether a wage component is fixed or variable is derived from <code>start_date</code>/<code>end_date</code> relative to the payroll period it falls in:</p>\n<ul>\n<li><strong>Variable</strong> (a one-off amount, processed for a single payroll period only): both <code>start_date</code> and <code>end_date</code> fall entirely within one payroll period, like the example above.</li>\n<li><strong>Fixed</strong> (recurring every payroll period until it ends): omit <code>end_date</code>, or set a date range that starts before or ends after the payroll period being processed.</li>\n</ul>\n<p><code>value</code> is interpreted according to the wage component type's <code>type</code> (amount, quantity or days) and <code>calculation_type</code>. <code>hourly_wage</code> is only used for types with <code>calculation_type</code> = <code>hourly_wage</code>.</p>\n","urlObject":{"path":["wage-components"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"5428d66b-3043-4883-bec5-1187d993dc63"},{"name":"Update wage component","id":"ee978a70-9c7c-4765-ada0-68460e69ed97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"end_date\": \"2026-09-30\",\n  \"value\": 300\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/wage-components/348210","description":"<p><strong>Updates a wage component</strong></p>\n<p><code>employee_id</code>, <code>wage_component_type_id</code> and <code>start_date</code> cannot be changed after creation.</p>\n","urlObject":{"path":["wage-components","348210"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"ee978a70-9c7c-4765-ada0-68460e69ed97"},{"name":"Delete wage component","id":"448a27e4-615b-462d-98ca-82abf1617e4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.buddee.nl/wage-components/348210","description":"<p>Deletes a wage component.</p>\n","urlObject":{"path":["wage-components","348210"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[],"_postman_id":"448a27e4-615b-462d-98ca-82abf1617e4c"}],"id":"f2922cd6-eb8f-4748-b517-5f2220c46db3","_postman_id":"f2922cd6-eb8f-4748-b517-5f2220c46db3","description":""}],"id":"94bc539c-e634-4bd8-a203-b9be7fa1948c","_postman_id":"94bc539c-e634-4bd8-a203-b9be7fa1948c","description":""}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"2a416f50-462c-4223-89b6-6776caf36f2a"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"31930549-13dd-4d28-8971-fa5c213a4f1c"}}],"variable":[{"key":"url","value":"https://api.buddee.nl"}]}