{"info":{"_postman_id":"7e139907-bce8-46f6-bf5a-1ec98634ef7c","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":"7e139907-bce8-46f6-bf5a-1ec98634ef7c","publishedId":"2sAXxTdBF2","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"2196F3"},"publishDate":"2025-01-17T13:09:56.000Z"},"item":[{"name":"Authentication","item":[{"name":"HealthCheck","id":"a9e66e97-6f06-4284-a19b-9ede7cf7ea91","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":"bb34fdfb-3d67-4f3f-ba7d-079a99eb6783","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":"a9e66e97-6f06-4284-a19b-9ede7cf7ea91"},{"name":"Auth/Token","event":[{"listen":"test","script":{"id":"a1ca06f0-fec7-4a4e-a264-b645de02888f","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);","});"],"type":"text/javascript","packages":{}}}],"id":"367940de-66d7-4f9a-82b7-7dd33e1b13e1","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":null}],"variable":[]}},"response":[],"_postman_id":"367940de-66d7-4f9a-82b7-7dd33e1b13e1"}],"id":"c5aca743-ab44-4c54-976c-2345c36b9726","_postman_id":"c5aca743-ab44-4c54-976c-2345c36b9726","description":""},{"name":"Users","item":[{"name":"Users","event":[{"listen":"test","script":{"id":"843908ff-889d-48e7-bca3-3a5df421bed3","exec":[""],"type":"text/javascript","packages":{}}}],"id":"ae357632-3455-4109-98b8-c16a28e76551","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":"ae357632-3455-4109-98b8-c16a28e76551"},{"name":"Update user","event":[{"listen":"test","script":{"id":"843908ff-889d-48e7-bca3-3a5df421bed3","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c75893c3-042c-4cfe-babd-9082c1198127","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":"0b49725a-58ff-417a-8b97-e00c44c41889","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":"c75893c3-042c-4cfe-babd-9082c1198127"},{"name":"Organisation users","event":[{"listen":"test","script":{"id":"843908ff-889d-48e7-bca3-3a5df421bed3","exec":[""],"type":"text/javascript","packages":{}}}],"id":"680f6522-48a1-4b41-b681-6c8ae184d198","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":"680f6522-48a1-4b41-b681-6c8ae184d198"},{"name":"Create organization user","event":[{"listen":"test","script":{"id":"843908ff-889d-48e7-bca3-3a5df421bed3","exec":[""],"type":"text/javascript","packages":{}}}],"id":"04a2380f-3229-4734-b492-8ccda19e10bd","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":"03e7acbf-1320-4668-a3c1-08c72a5c43a5","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":"04a2380f-3229-4734-b492-8ccda19e10bd"}],"id":"00bc680e-24ae-4508-b475-9ffa7bc4175f","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":"00bc680e-24ae-4508-b475-9ffa7bc4175f"},{"name":"Employees","item":[{"name":"Employments","item":[{"name":"Employment","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c43abea3-fb1f-420d-ab55-824b45496337","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":null},{"disabled":true,"description":{"content":"<p>Any of 'employee', 'intern',  'self-employed', 'agency_worker', 'dga', 'volunteer' </p>\n","type":"text/plain"},"key":"type","value":null},{"disabled":true,"description":{"content":"<p>date</p>\n","type":"text/plain"},"key":"start_date","value":null},{"disabled":true,"description":{"content":"<p>date </p>\n","type":"text/plain"},"key":"end_date","value":null},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active","value":null},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"active_or_future","value":null},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"future","value":null},{"disabled":true,"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"payroll","value":null}],"variable":[]}},"response":[{"id":"bdd6c619-56b5-4c29-8e2d-185bb10a7657","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":"c43abea3-fb1f-420d-ab55-824b45496337"},{"name":"Employment","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"373fca11-ec15-4c4f-b05b-38cdf4de9647","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":"0d83c39a-434c-4c0f-998e-f1e990f81371","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":"373fca11-ec15-4c4f-b05b-38cdf4de9647"}],"id":"9146eb81-0252-4ff9-8119-956acc7c0244","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":"9146eb81-0252-4ff9-8119-956acc7c0244"},{"name":"Contracts","item":[{"name":"Retrieve contracts","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6b8a0984-ab79-4a2d-a4c7-cc971e5e5bec","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":"e4298252-c98f-4b79-8ede-068deaa165c2","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":"6b8a0984-ab79-4a2d-a4c7-cc971e5e5bec"},{"name":"Create a new contract","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6f74ad56-f0a6-439d-9756-66aa925020cf","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":"fb7af265-8353-48ab-95c4-23e969200d00","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":"6f74ad56-f0a6-439d-9756-66aa925020cf"},{"name":"Update contracts","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"60ea8ac5-7665-4b50-a326-bbf077f462cf","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":"8a18ac23-972c-4932-815a-2c0456fc8fb5","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":"60ea8ac5-7665-4b50-a326-bbf077f462cf"}],"id":"7c338609-d5e6-4431-86bc-12f3466d690c","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":"7c338609-d5e6-4431-86bc-12f3466d690c"},{"name":"Positions","item":[{"name":"Retrieve positions","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"5c0b7261-0ef2-488a-98d2-8a4696e9b098","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":"b32bef0d-148c-471f-ad33-4deb6de1ddf9","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":"5c0b7261-0ef2-488a-98d2-8a4696e9b098"},{"name":"Create a new position","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"734b0cf4-83b8-4b47-8de9-37b62e122c8b","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":"48738c58-1b8c-402b-876f-83db6ff6b152","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":"734b0cf4-83b8-4b47-8de9-37b62e122c8b"},{"name":"Update position","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"145e8428-dde1-40cb-8d84-72d42601aa76","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":"dbe38326-17ab-447a-98a1-f39338289542","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":"145e8428-dde1-40cb-8d84-72d42601aa76"}],"id":"ba793e39-d2d1-4b60-8381-0ea026c105f6","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":"ba793e39-d2d1-4b60-8381-0ea026c105f6"},{"name":"Salaries","item":[{"name":"Retrieve salaries","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"364275d7-d67d-4138-b247-7119230d527f","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":"2ff175d3-7dca-468f-882c-23e7019b1f3f","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":"364275d7-d67d-4138-b247-7119230d527f"},{"name":"Create a new salary","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"36f3c0e8-61d7-4fe6-9c73-d5fb979a6b91","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":"e2232d42-6485-4138-bfaf-3dfb2432d48d","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":"36f3c0e8-61d7-4fe6-9c73-d5fb979a6b91"},{"name":"Update salaries","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"d099eb1e-9139-425a-aaab-6c1c0b355b27","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":"5ca164fa-b5f9-4240-bf26-5e66ec0eafc4","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":"d099eb1e-9139-425a-aaab-6c1c0b355b27"}],"id":"458da6e4-6052-4fb9-b726-4ccfa3dcc8da","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":"458da6e4-6052-4fb9-b726-4ccfa3dcc8da"},{"name":"Employees","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"fd057d3c-8b40-4808-a4d2-eeffc5da82d7","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":"b4ee1c02-3516-482e-9a47-651c2971f818","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":"fd057d3c-8b40-4808-a4d2-eeffc5da82d7"},{"name":"Employee","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"662a6e16-8129-45e4-af91-08b73d2449c5","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 a specific employee.</p>\n","urlObject":{"path":["employees","138745"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"9126d51e-514e-496d-9458-c07854e3f42c","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":"662a6e16-8129-45e4-af91-08b73d2449c5"},{"name":"Employee","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"d20f7152-b265-4d92-a269-0010c372b4ab","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":"642bb077-1940-4c23-abdf-606d6b01e42b","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":"d20f7152-b265-4d92-a269-0010c372b4ab"},{"name":"Create employee","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"d08b1399-6333-4f08-a17b-26b2d8485d7e","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":"71bdcf2d-3821-4325-ac00-18034bbb376f","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":"cb362c59-d91d-447c-8759-052b53ad6432","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":"d08b1399-6333-4f08-a17b-26b2d8485d7e"},{"name":"Update employee","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"37fb8bb6-3466-446f-9625-b567b6f9d553","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\": Prince52@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":"f3d49c32-6a14-47d7-8849-0e865b29604f","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":"71737624-54d1-4fed-a343-113d4aeb8e52","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":"430156ae-184e-4f65-ad17-abdc9924f30a","name":"Updated employee","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Johny\",\n  \"last_name\": \"Does\",\n  \"work_email\": Nicklaus.Schaden3@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":"37fb8bb6-3466-446f-9625-b567b6f9d553"},{"name":"Invite an employee","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"07e27ba3-00cb-4544-a319-20ca9fed2a5d","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=Brisa.Dietrich77@yahoo.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":"Richard_Abernathy@yahoo.com"}],"variable":[]}},"response":[{"id":"7e651fff-cf57-4fec-95cf-0e69b3eb107a","name":"Invite an employee","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.buddee.nl/employees/{{new_employee_id}}/invite?type=business&work_email=Nicola21@yahoo.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":"Heaven.Keeling84@gmail.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":"07e27ba3-00cb-4544-a319-20ca9fed2a5d"}],"id":"7d5ac36d-eb8b-45cf-a17a-bb8c49d1bfcc","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":"7d5ac36d-eb8b-45cf-a17a-bb8c49d1bfcc"},{"name":"Leave","item":[{"name":"Leave types","item":[{"name":"Leave types","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"a8096649-a95e-47ac-85db-2e67327a50e1","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":"01aea329-fccb-417c-bf6a-64daae7fce6b","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":"a8096649-a95e-47ac-85db-2e67327a50e1"},{"name":"Create leave type","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"e6003e9b-ca89-406f-a4ce-1ace04602cf6","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":"631ba75e-84a1-4a8f-a199-5b0e46c8cd3b","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":"e6003e9b-ca89-406f-a4ce-1ace04602cf6"},{"name":"Update leave type","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"e9ed7d36-e12e-4bf8-80ad-1fa8aaa03377","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":"3e444a20-f757-407c-9acf-6d2d337240bd","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":"e9ed7d36-e12e-4bf8-80ad-1fa8aaa03377"},{"name":"Delete leave type","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"d4e0c03f-6aa3-4bc3-afb0-7289c82aa9e1","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":"94c2d892-8dc8-487d-bd95-bdae1406c97e","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":"d4e0c03f-6aa3-4bc3-afb0-7289c82aa9e1"}],"id":"fe5aa60c-d75e-4edb-95dd-0ea3657a2dc4","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":"fe5aa60c-d75e-4edb-95dd-0ea3657a2dc4"},{"name":"Leave request","item":[{"name":"Leave requests","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"2c5f483b-63d4-4ecf-a9d1-7efe36563639","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":"0f7716cc-197f-49ca-b859-09e64d10e0c3","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":"a33cf613-eaca-4dd0-83b0-672be3d34131","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":"2c5f483b-63d4-4ecf-a9d1-7efe36563639"},{"name":"Create leave request","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b5a0cea5-e416-4521-8bc1-46cc4c3d95cb","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":"ba873877-9e98-4ad9-b5e5-7922b6f418eb","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":"b5a0cea5-e416-4521-8bc1-46cc4c3d95cb"},{"name":"Update leave request","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b4434a46-079e-4ada-90a1-a3e98ecdf552","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":"037ca6ed-a7ad-4dfb-802a-717d9dfb9d37","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":"b4434a46-079e-4ada-90a1-a3e98ecdf552"},{"name":"Delete leave request","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"f63eda99-9f1a-4dc1-ab58-5ebe5a6d2471","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":"005f0393-c3f4-468e-b3ec-253a41454ec5","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":"f63eda99-9f1a-4dc1-ab58-5ebe5a6d2471"}],"id":"96cb84d8-4218-468a-8c98-31a2c9a5ea7c","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":"96cb84d8-4218-468a-8c98-31a2c9a5ea7c"},{"name":"Leave registrations","item":[{"name":"Leave registrations","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b99f0b57-1828-4947-8e0b-99efa08c0bac","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":null},{"disabled":true,"key":"leave_balance_id","value":null},{"disabled":true,"key":"active_in_period","value":" "},{"disabled":true,"key":"approval_status","value":""}],"variable":[]}},"response":[{"id":"87a34abe-e034-4291-98b7-99fbe7a379c4","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":"14143ac1-650a-4bf0-98bf-a9ac211d6bc4","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":"b99f0b57-1828-4947-8e0b-99efa08c0bac"},{"name":"Create leave registration","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"791e964c-81cf-44f8-83a5-feb2e36b24ac","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":"25f972b0-1cd0-486b-b2af-d8e446240180","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":"791e964c-81cf-44f8-83a5-feb2e36b24ac"},{"name":"Create leave registration Copy","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"500ca13c-1af0-4051-a24a-fa647765c7f2","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":"eb7d5052-d80a-4173-9d2d-d3a305d4f53e","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":"500ca13c-1af0-4051-a24a-fa647765c7f2"},{"name":"Delete leave registration","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"9c63df34-77ee-4dc5-8eed-b2372c52654d","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":"2e686da3-8000-4ea9-b556-310e96c08935","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":"9c63df34-77ee-4dc5-8eed-b2372c52654d"}],"id":"dd40de38-f5c8-4ad6-a454-53ede27ef1e5","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":"dd40de38-f5c8-4ad6-a454-53ede27ef1e5"},{"name":"Leave balance","item":[{"name":"Leave balances","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"5ebaa10f-1296-4cef-900d-f1d6ef4679b4","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":null},{"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":null},{"disabled":true,"description":{"content":"<p>Filter leave balances based on the amount of hours used</p>\n","type":"text/plain"},"key":"hours_used","value":null},{"disabled":true,"description":{"content":"<p>Filter leave balances based on the amount of hours remaining</p>\n","type":"text/plain"},"key":"hours_remaining","value":null},{"disabled":true,"description":{"content":"<p>Filter leave balances based on the expiration date</p>\n","type":"text/plain"},"key":"expiration_date","value":null},{"disabled":true,"key":"active","value":null},{"disabled":true,"key":"active_employee","value":null},{"disabled":true,"key":"employee_status","value":null},{"disabled":true,"key":"department_id","value":null},{"disabled":true,"key":"label_id","value":null},{"key":"year","value":"2022"}],"variable":[]}},"response":[],"_postman_id":"5ebaa10f-1296-4cef-900d-f1d6ef4679b4"},{"name":"Create leave balance","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"69e825d2-082e-4c30-b32e-4288d4678b6b","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":"a2d0f46b-4a1e-4302-8596-dafd51febbb1","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":"69e825d2-082e-4c30-b32e-4288d4678b6b"},{"name":"Update leave balance","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"a5218231-3c68-442e-878f-e25816a34e04","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":"7f184045-160e-44f6-bd9c-bcf4b795cacf","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":"a5218231-3c68-442e-878f-e25816a34e04"},{"name":"Update leave balance Copy","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"0297cad0-cda5-4fdf-95f3-6f3367e8a2ea","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":"5b33f531-9d0d-4e93-8609-bf92af5b9c7d","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":"0297cad0-cda5-4fdf-95f3-6f3367e8a2ea"}],"id":"3b8e1666-5239-46b1-843a-a5864f512930","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":"3b8e1666-5239-46b1-843a-a5864f512930"}],"id":"cf453dc0-db35-4c01-95ed-d098009a6c81","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":"cf453dc0-db35-4c01-95ed-d098009a6c81"},{"name":"Sick leave registrations","item":[{"name":"Sick leave registrations","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c005e45d-7359-4575-b6d7-43f3b9ba3f69","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":"68eefcad-7173-4749-935a-9f9b16970836","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":"c005e45d-7359-4575-b6d7-43f3b9ba3f69"},{"name":"Update sick leave registration","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"3f584483-a0f6-4e35-b386-1156183e1b05","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":"6d3571a0-4b84-4454-a7da-de38e628574f","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":"3f584483-a0f6-4e35-b386-1156183e1b05"},{"name":"Create sick leave registration","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"856441a3-8696-4533-928f-0cafa51f1893","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":"40648f48-5b5a-4243-8e50-b0513914b914","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":"856441a3-8696-4533-928f-0cafa51f1893"},{"name":"Delete sick leave registration","event":[{"listen":"test","script":{"id":"ecba4c69-6883-4976-a800-ceae52beafaf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6430c7ec-53a2-4680-afd0-8e06f1ea8f56","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":"6789f607-8c69-40e7-ae3d-92af5b4f1dfb","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":"6430c7ec-53a2-4680-afd0-8e06f1ea8f56"}],"id":"e6b4c4db-5882-4f86-b394-af2f9f65f941","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":"e6b4c4db-5882-4f86-b394-af2f9f65f941"},{"name":"Time registrations","item":[{"name":"Time Registrations","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"539c5261-c313-49ef-89d8-82b835b22cd4","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":"539c5261-c313-49ef-89d8-82b835b22cd4"},{"name":"Create time registration","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"9236c328-dbec-4889-a70e-90057f26f971","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":"a3e5a0a4-5e6e-468b-80aa-5a5d51bda737","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":"9236c328-dbec-4889-a70e-90057f26f971"},{"name":"Update time registration","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"a5aa6d53-0bdb-48be-9398-d47afeeced24","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":"a5aa6d53-0bdb-48be-9398-d47afeeced24"},{"name":"Delete time registration","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"ea68df0f-d416-497a-b119-312fd92a3beb","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":"ea68df0f-d416-497a-b119-312fd92a3beb"}],"id":"243054d4-e045-4149-8672-b160df70eb14","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":"243054d4-e045-4149-8672-b160df70eb14"},{"name":"Work schedules","item":[{"name":"Work schedules","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"f9d1598c-b4a8-4ae5-bc29-0b16f159601a","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":"81bd3402-2e64-4454-9304-a3f0c4544cca","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":"f9d1598c-b4a8-4ae5-bc29-0b16f159601a"},{"name":"Work schedule","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"171a7b47-5cfc-4904-a2dc-5949dfb80cd5","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","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":["work-schedules"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"e0d6559c-3579-452f-8106-91a938a3dae4","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":"171a7b47-5cfc-4904-a2dc-5949dfb80cd5"},{"name":"Work schedule","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"d6ebfbf6-fe66-4390-94bb-a566e112b2e5","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":"1237300f-5fba-48a0-8453-d2d232c7100d","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":"d6ebfbf6-fe66-4390-94bb-a566e112b2e5"},{"name":"Work schedule","event":[{"listen":"test","script":{"id":"d6bcf20d-67e1-42fa-8bd7-c98b7f23e79e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"e792888d-515b-4a4a-84c7-1c08d960e724","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":"498404fe-62e2-436d-ba41-bd9653c27c60","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":"e792888d-515b-4a4a-84c7-1c08d960e724"}],"id":"b58548de-629f-42ca-aee3-9b161b526a71","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":"b58548de-629f-42ca-aee3-9b161b526a71"},{"name":"Locations","item":[{"name":"Locations","id":"a9cb66fe-f2b5-4976-8c1e-689852e3ee1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/locations","urlObject":{"path":["locations"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"key":"name","value":""}],"variable":[]}},"response":[{"id":"fdd94221-b9e6-47fd-8e55-a3613d7a065c","name":"Locations","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/locations","host":["https://api.buddee.nl"],"path":["locations"],"query":[{"key":"name","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:58: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    \"meta\": {\n        \"count\": 3,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 196741,\n            \"organization_id\": 14799,\n            \"name\": \"Utrecht\",\n            \"phone\": null,\n            \"street\": null,\n            \"street_number\": null,\n            \"street_number_suffix\": null,\n            \"postal_code\": null,\n            \"city\": \"Haarlem\",\n            \"country\": \"NL\",\n            \"created_at\": \"2023-02-23 08:23:32\",\n            \"updated_at\": \"2024-07-02 07:57:42\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 196773,\n            \"organization_id\": 14799,\n            \"name\": \"Alkmaar\",\n            \"phone\": null,\n            \"street\": null,\n            \"street_number\": null,\n            \"street_number_suffix\": null,\n            \"postal_code\": null,\n            \"city\": \"Alkmaar\",\n            \"country\": \"NL\",\n            \"created_at\": \"2023-03-13 10:14:19\",\n            \"updated_at\": \"2023-12-04 11:49:30\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 197140,\n            \"organization_id\": 14799,\n            \"name\": \"Amsterdam\",\n            \"phone\": null,\n            \"street\": null,\n            \"street_number\": null,\n            \"street_number_suffix\": null,\n            \"postal_code\": null,\n            \"city\": \"Antwerpen\",\n            \"country\": \"BE\",\n            \"created_at\": \"2023-12-18 09:31:24\",\n            \"updated_at\": \"2024-07-02 07:57:37\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"a9cb66fe-f2b5-4976-8c1e-689852e3ee1e"},{"name":"Locations","id":"7c8b06ef-f6d7-4ec5-8b3b-7de9a86141cc","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\": \"HQ Amsterdam\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/locations","urlObject":{"path":["locations"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"e2f68bb5-92be-4c61-b07c-6fc0e17a7ac2","name":"Locations","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{ \n    \"name\": \"HQ Amsterdam\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/locations"},"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 14:05:14 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\": 198055,\n        \"organization_id\": 14799,\n        \"name\": \"HQ Amsterdam\",\n        \"phone\": null,\n        \"street\": null,\n        \"street_number\": null,\n        \"street_number_suffix\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"country\": null,\n        \"created_at\": \"2025-08-06 14:05:14\",\n        \"updated_at\": \"2025-08-06 14:05:14\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"7c8b06ef-f6d7-4ec5-8b3b-7de9a86141cc"},{"name":"Update locations","id":"215039fc-e6d0-46a7-accb-68e8c6951d73","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\": \"HQ Brabant\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/locations/198054","urlObject":{"path":["locations","198054"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"72d2a53c-7635-4116-a67a-93acd9527357","name":"response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n    \"name\": \"HQ Brabant\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/locations/198054"},"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:58:36 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\": 198054,\n        \"organization_id\": 14799,\n        \"name\": \"HQ Brabant\",\n        \"phone\": null,\n        \"street\": null,\n        \"street_number\": null,\n        \"street_number_suffix\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"country\": null,\n        \"created_at\": \"2025-08-06 13:58:18\",\n        \"updated_at\": \"2025-08-06 13:58:36\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"215039fc-e6d0-46a7-accb-68e8c6951d73"},{"name":"Delete Location","id":"a10e3306-cdbc-42db-97f6-28f3c4803123","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{ \n    \n            \"id\": 189300,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2029-08-07\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/locations/198054","urlObject":{"path":["locations","198054"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"fbe2659a-061c-46ae-a5f2-70401a6bf3df","name":"response","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{ \n    \n            \"id\": 189300,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2029-08-07\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/locations/198054"},"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:59:00 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":"a10e3306-cdbc-42db-97f6-28f3c4803123"}],"id":"95efd865-f2ef-4eb8-8afe-849b59e901a6","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>Sorts by name.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"95efd865-f2ef-4eb8-8afe-849b59e901a6"},{"name":"Work location status","item":[{"name":"Work location status","id":"cca8a5d6-2099-46dc-8017-9a381635ca12","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,"key":"employee_id","value":""},{"disabled":true,"key":"location_id","value":""},{"disabled":true,"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":"7c37138b-eca2-45c9-9fee-0bd4ccabbb78","name":"response","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":"","type":"text","disabled":true},{"key":"location_id","value":"","type":"text","disabled":true},{"key":"work_location","value":"","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:59:36 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\": 732,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 4\n    },\n    \"data\": [\n        {\n            \"id\": 120324,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-09-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-23 08:34:39\",\n            \"updated_at\": \"2022-09-23 08:34: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\": 120960,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-09-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120961,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120962,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120963,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120964,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120965,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120966,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-11-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2023-12-04 11:50: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\": 120967,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120968,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120969,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120970,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120971,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120972,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120973,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120974,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120975,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120976,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120977,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-01-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2023-01-24 12:27: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\": 120978,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120979,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120980,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120981,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120982,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120983,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120984,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120985,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120986,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120987,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120988,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120989,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120990,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120991,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120992,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120993,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120994,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120995,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-30\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120996,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120997,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120998,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 120999,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121000,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121001,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121002,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121003,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121004,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121005,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121006,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121007,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121008,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121009,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121010,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121011,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121012,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-09-28 11:42:33\",\n            \"updated_at\": \"2022-09-28 11:42:33\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 121930,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-03 12:17:31\",\n            \"updated_at\": \"2022-10-03 12:17: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\": 122233,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-10-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-10 12:46:08\",\n            \"updated_at\": \"2023-01-27 10:04: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\": 136657,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136658,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136659,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-10-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136660,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136661,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136662,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136663,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136664,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-12-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-12-05 12:15:28\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136665,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136666,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136667,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136668,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136669,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136670,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136671,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136672,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-30\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136673,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2022-10-27 09:56: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\": 136674,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 15:13:34\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136675,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-20 10:31: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\": 136676,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-02-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136677,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-03-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136678,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-03-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136679,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-03-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136680,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-03-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136681,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-04-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136682,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-04-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136683,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-04-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136684,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-04-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136685,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-05-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136686,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-05-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136687,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-05-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136688,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-05-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136689,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-05-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136690,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-06-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136691,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-06-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136692,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-06-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136693,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-06-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136694,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-07-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136695,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-07-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136696,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-07-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136697,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-07-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136698,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-07-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136699,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136700,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136701,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136702,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-08-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136703,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136704,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136705,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136706,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136707,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136708,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136709,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-10-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:56:51\",\n            \"updated_at\": \"2023-02-13 13:17: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\": 136710,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-10-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136711,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-10-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136712,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-11-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136713,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-11-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136714,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-11-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136715,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-11-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136716,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-11-30\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136717,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-12-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136718,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-12-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136719,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-12-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136720,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2022-12-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136721,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-01-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136722,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-01-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136723,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-01-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2022-10-27 09:57:03\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 136724,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-25\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136725,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136726,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136727,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136728,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136729,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136730,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136731,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-03-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-03-15 10:50: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\": 136732,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136733,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136734,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136735,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136736,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136737,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136738,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136739,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136740,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136741,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136742,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-31\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136743,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-07\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136744,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136745,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136746,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136747,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:03\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136748,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136749,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136750,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136751,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136752,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136753,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136754,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136755,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-08-30\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136756,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136757,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136758,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-09-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136759,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"office\",\n            \"date\": \"2023-09-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-09-27 14:12: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\": 136760,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-10-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136761,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-10-11\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 136762,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-10-18\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-10-27 09:57:04\",\n            \"updated_at\": \"2023-01-19 12:15: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\": 139167,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-04\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-04 12:22:28\",\n            \"updated_at\": \"2022-11-04 12:22:28\",\n            \"approval\": null,\n            \"_permissions\": [\n                \"attribute.is_processed\",\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"report\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 139708,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-10 14:20:35\",\n            \"updated_at\": \"2022-11-10 14:20: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\": 140057,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-14\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:21\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140058,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-21\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140059,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-11-28\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140060,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140061,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140062,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140063,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2022-12-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140064,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-02\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140065,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-09\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140066,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-16\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140067,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-23\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140068,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-01-30\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140069,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140070,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140071,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140072,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-02-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140073,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-06\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140074,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-13\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140075,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-20\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140076,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-03-27\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140077,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140078,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140079,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140080,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-04-24\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140081,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-01\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140082,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-08\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140083,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-15\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140084,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-22\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140085,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-05-29\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140086,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-05\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140087,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-12\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140088,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-19\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140089,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-06-26\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140090,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-03\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140091,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-10\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06: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\": 140092,\n            \"organization_id\": 14799,\n            \"employee_id\": 138749,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2023-07-17\",\n            \"is_processed\": false,\n            \"processed_at\": null,\n            \"created_at\": \"2022-11-15 12:06:30\",\n            \"updated_at\": \"2022-11-15 12:06:30\",\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":"cca8a5d6-2099-46dc-8017-9a381635ca12"},{"name":"Add work location status","id":"45e90bdc-d4ff-4eba-9557-4c038bae82fc","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            \"location_id\": 196741,\n            \"work_location\": \"office\",\n            \"date\": \"2029-08-07\"\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":"73981722-0363-45b6-abd0-329ef52b3b0c","name":"response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{ \n            \"employee_id\": 138745,\n            \"location_id\": 196741,\n            \"work_location\": \"office\",\n            \"date\": \"2029-08-07\"\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 14:01: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\": 458867,\n        \"organization_id\": 14799,\n        \"employee_id\": 138745,\n        \"location_id\": 196741,\n        \"work_location\": \"office\",\n        \"date\": \"2029-08-07\",\n        \"is_processed\": false,\n        \"processed_at\": null,\n        \"created_at\": \"2025-08-06 14:01:22\",\n        \"updated_at\": \"2025-08-06 14:01:22\",\n        \"approval\": {\n            \"id\": 916786,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\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\": 458867,\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 14:01:22\",\n            \"updated_at\": \"2025-08-06 14:01:22\",\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":"45e90bdc-d4ff-4eba-9557-4c038bae82fc"},{"name":"Add work location status","id":"9ea65ec0-2f19-4347-b94d-4f139dc28294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n\n            \"work_location\": \"office\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/458866","urlObject":{"path":["work-location-statuses","458866"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"481df6f5-661a-45d8-940f-aa15d5eabbd6","name":"response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n\n            \"work_location\": \"office\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/458866"},"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 14:00: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    \"data\": {\n        \"id\": 458866,\n        \"organization_id\": 14799,\n        \"employee_id\": 138745,\n        \"location_id\": null,\n        \"work_location\": \"office\",\n        \"date\": \"2029-08-07\",\n        \"is_processed\": false,\n        \"processed_at\": null,\n        \"created_at\": \"2025-08-06 14:00:05\",\n        \"updated_at\": \"2025-08-06 14:00:19\",\n        \"approval\": {\n            \"id\": 916785,\n            \"organization_id\": 14799,\n            \"employee_id\": 138745,\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\": 458866,\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 14:00:05\",\n            \"updated_at\": \"2025-08-06 14:00:05\",\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":"9ea65ec0-2f19-4347-b94d-4f139dc28294"},{"name":"Delete work location status","id":"87f631d3-ed1a-40a1-8a06-adf558e69398","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{ \n    \n            \"id\": 189300,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2029-08-07\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/458866","urlObject":{"path":["work-location-statuses","458866"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"2ab3390b-b686-47f9-afa5-d8d71af545de","name":"response","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{ \n    \n            \"id\": 189300,\n            \"organization_id\": 39271,\n            \"employee_id\": 146846,\n            \"location_id\": null,\n            \"work_location\": \"home\",\n            \"date\": \"2029-08-07\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/work-location-statuses/458866"},"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 14: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}"}],"_postman_id":"87f631d3-ed1a-40a1-8a06-adf558e69398"}],"id":"6d184ce2-71f2-4b14-b8cd-e1ccedad956b","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":"6d184ce2-71f2-4b14-b8cd-e1ccedad956b"},{"name":"Approvals","item":[{"name":"Approvals","id":"5e052571-44e1-42aa-860a-0be807a997c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/approvals?leave_request_id=229218","urlObject":{"path":["approvals"],"host":["https://api.buddee.nl"],"query":[{"disabled":true,"key":"name","value":""},{"disabled":true,"description":{"content":"<p>Id of the related expense</p>\n","type":"text/plain"},"key":"expense_id","value":""},{"disabled":true,"description":{"content":"<p>Id of the related leave scheme</p>\n","type":"text/plain"},"key":"leave_scheme_id","value":""},{"disabled":true,"description":{"content":"<p>Id of the related time registration</p>\n","type":"text/plain"},"key":"time_registration_id","value":""},{"disabled":true,"description":{"content":"<p>Id of the related approved, this is the employee that approved the approval</p>\n","type":"text/plain"},"key":"approver_id","value":""},{"disabled":true,"description":{"content":"<p>The status of the approval can be \"pending\", \"approved\", or \"rejected\".</p>\n","type":"text/plain"},"key":"status","value":""},{"key":"leave_request_id","value":"229218"}],"variable":[]}},"response":[{"id":"f182ed50-e9ea-4051-abaf-ae8a64d8f0c9","name":"New Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.buddee.nl/approvals?leave_request_id=229218","host":["https://api.buddee.nl"],"path":["approvals"],"query":[{"key":"name","value":"","type":"text","disabled":true},{"key":"expense_id","value":"","description":"Id of the related expense","type":"text","disabled":true},{"key":"leave_scheme_id","value":"","description":"Id of the related leave scheme","type":"text","disabled":true},{"key":"time_registration_id","value":"","description":"Id of the related time registration","type":"text","disabled":true},{"key":"approver_id","value":"","description":"Id of the related approved, this is the employee that approved the approval","type":"text","disabled":true},{"key":"status","value":"","description":"The status of the approval can be \"pending\", \"approved\", or \"rejected\".","type":"text","disabled":true},{"key":"leave_request_id","value":"229218"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"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, 16 Oct 2025 08:17:00 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\": 264705,\n            \"organization_id\": 38940,\n            \"employee_id\": 141428,\n            \"expense_id\": null,\n            \"leave_request_id\": 229218,\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\": false,\n            \"status_changed_at\": \"2025-10-15 12:09:41\",\n            \"created_at\": \"2023-11-30 15:09:24\",\n            \"updated_at\": \"2025-10-15 12:09:41\",\n            \"_permissions\": [\n                \"read\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"5e052571-44e1-42aa-860a-0be807a997c9"},{"name":"Retrieve a single approval","id":"7fdbb772-fc22-4c43-9842-76e2d5d053c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/approvals/264705","urlObject":{"path":["approvals","264705"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"e1e1ed64-990d-437a-ba3e-48d931fa7781","name":"Approvals Copy","originalRequest":{"method":"GET","header":[],"url":"https://api.buddee.nl/approvals/264705"},"status":"OK","code":200,"_postman_previewlanguage":null,"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, 16 Oct 2025 08:22: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\": 264705,\n        \"organization_id\": 38940,\n        \"employee_id\": 141428,\n        \"expense_id\": null,\n        \"leave_request_id\": 229218,\n        \"leave_scheme_id\": null,\n        \"time_registration_id\": null,\n        \"trip_registration_id\": null,\n        \"work_location_status_id\": null,\n        \"approver_id\": 145941,\n        \"status\": \"rejected\",\n        \"comments\": \"Nope....\",\n        \"auto_approval_date\": null,\n        \"is_sequential\": false,\n        \"status_changed_at\": \"2025-10-16 08:17:45\",\n        \"created_at\": \"2023-11-30 15:09:24\",\n        \"updated_at\": \"2025-10-16 08:21:03\",\n        \"_permissions\": [\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"7fdbb772-fc22-4c43-9842-76e2d5d053c9"},{"name":"Update an approval","id":"472165c4-d4b2-4943-adc9-464eae04fe3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"status\": \"rejected\",\n  \"comments\": \"Nope....\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/approvals/264705","description":"<p>For example, update the state of an approval with a comment.</p>\n","urlObject":{"path":["approvals","264705"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"a9875895-cee6-49c5-bd2d-2a0de2850011","name":"Approvals Copy","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"status\": \"rejected\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/approvals/264705"},"status":"OK","code":200,"_postman_previewlanguage":null,"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, 16 Oct 2025 08:17:45 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\": 264705,\n        \"organization_id\": 38940,\n        \"employee_id\": 141428,\n        \"expense_id\": null,\n        \"leave_request_id\": 229218,\n        \"leave_scheme_id\": null,\n        \"time_registration_id\": null,\n        \"trip_registration_id\": null,\n        \"work_location_status_id\": null,\n        \"approver_id\": 145941,\n        \"status\": \"rejected\",\n        \"comments\": null,\n        \"auto_approval_date\": null,\n        \"is_sequential\": false,\n        \"status_changed_at\": \"2025-10-16T08:17:45.228164Z\",\n        \"created_at\": \"2023-11-30 15:09:24\",\n        \"updated_at\": \"2025-10-16 08:17:45\",\n        \"leave_request\": {\n            \"id\": 229218,\n            \"organization_id\": 38940,\n            \"employee_id\": 141428,\n            \"leave_type_id\": 195783,\n            \"hours\": \"120.00\",\n            \"reason\": null,\n            \"start_date\": \"2023-11-20\",\n            \"start_time\": null,\n            \"end_date\": \"2023-12-10\",\n            \"end_time\": null,\n            \"created_at\": \"2023-11-30 15:09:24\",\n            \"updated_at\": \"2023-11-30 15:09:24\",\n            \"approval\": {\n                \"id\": 264705,\n                \"organization_id\": 38940,\n                \"employee_id\": 141428,\n                \"expense_id\": null,\n                \"leave_request_id\": 229218,\n                \"leave_scheme_id\": null,\n                \"time_registration_id\": null,\n                \"trip_registration_id\": null,\n                \"work_location_status_id\": null,\n                \"approver_id\": 145941,\n                \"status\": \"rejected\",\n                \"comments\": null,\n                \"auto_approval_date\": null,\n                \"is_sequential\": false,\n                \"status_changed_at\": \"2025-10-16 08:17:45\",\n                \"created_at\": \"2023-11-30 15:09:24\",\n                \"updated_at\": \"2025-10-16 08:17:45\",\n                \"_permissions\": [\n                    \"read\",\n                    \"update\"\n                ]\n            },\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ],\n            \"hours_remaining_after_approval\": \"-17.12\"\n        },\n        \"employee\": {\n            \"id\": 141428,\n            \"organization_id\": 38940,\n            \"company_id\": 15094,\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            \"nmbrs_template_id\": null,\n            \"first_name\": \"Arno\",\n            \"initials\": \"A.\",\n            \"last_name\": \"Anker\",\n            \"last_name_prefix\": null,\n            \"last_name_composition\": \"own_name\",\n            \"composed_last_name\": \"Anker\",\n            \"composed_last_name_prefix\": null,\n            \"full_name\": \"Arno Anker\",\n            \"full_name_alt\": \"Anker, Arno\",\n            \"gender\": \"male\",\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\": \"arno@foo.be\",\n            \"work_phone\": \"0620939751\",\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\": \"2022-01-01\",\n            \"first_day_at_work_date\": \"2022-01-01\",\n            \"seniority_date\": \"2022-01-01\",\n            \"archived_at\": \"2023-12-12 12:45:39\",\n            \"created_at\": \"2022-06-01 13:03:42\",\n            \"updated_at\": \"2024-02-14 10:52:54\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"import\",\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                \"shiftbase_contracts.create\",\n                \"shiftbase_contracts.delete\",\n                \"shiftbase_contracts.read\",\n                \"shiftbase_contracts.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                \"tasks.update.all\",\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\": \"Dhr.\"\n        },\n        \"_permissions\": [\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"472165c4-d4b2-4943-adc9-464eae04fe3e"}],"id":"8cadc656-dace-4b0a-b468-3e056e6e1db8","description":"<p>Leave requests, Leave schemes, Time registrations, Trip registration and Work locations all have an approval.</p>\n<p>The approval contains the state, comments, dates one of these has been approved or rejected.  </p>\n<p>An approval is always automatically created when for example a leave request has been created.</p>\n<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>status</code></td>\n<td>Sort on status</td>\n</tr>\n<tr>\n<td><code>status_changed_at</code></td>\n<td>Sort on the date a status changed</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8cadc656-dace-4b0a-b468-3e056e6e1db8"},{"name":"Departments","item":[{"name":"Departments","id":"f1d2d8e6-9a7d-499a-b442-45d73c0841b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/departments?name&code","urlObject":{"path":["departments"],"host":["https://api.buddee.nl"],"query":[{"key":"name","value":null},{"key":"code","value":null}],"variable":[]}},"response":[{"id":"cfa2a022-6331-41d7-be65-25d49c157bbb","name":"response","originalRequest":{"method":"GET","header":[],"url":"https://api.buddee.nl/departments"},"status":"OK","code":200,"_postman_previewlanguage":null,"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, 07 Nov 2025 13:48:08 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\": 5,\n        \"page\": 1,\n        \"per_page\": 200,\n        \"total_pages\": 1\n    },\n    \"data\": [\n        {\n            \"id\": 155907,\n            \"organization_id\": 38940,\n            \"name\": \"Marketing\",\n            \"code\": \"MRK\",\n            \"color\": \"#ff00bb\",\n            \"created_at\": \"2022-06-01 13:03:42\",\n            \"updated_at\": \"2023-11-24 14:10:28\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 155908,\n            \"organization_id\": 38940,\n            \"name\": \"Sales\",\n            \"code\": \"SLS\",\n            \"color\": \"#ca21b3\",\n            \"created_at\": \"2022-06-01 13:03:42\",\n            \"updated_at\": \"2023-11-24 14:10:47\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 155909,\n            \"organization_id\": 38940,\n            \"name\": \"Support\",\n            \"code\": \"SUP\",\n            \"color\": \"#ffe0f1\",\n            \"created_at\": \"2022-06-01 13:03:42\",\n            \"updated_at\": \"2023-11-24 14:10:57\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 162113,\n            \"organization_id\": 38940,\n            \"name\": \"Software Development\",\n            \"code\": null,\n            \"color\": null,\n            \"created_at\": \"2025-07-23 14:11:28\",\n            \"updated_at\": \"2025-07-23 14:11:28\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        },\n        {\n            \"id\": 162205,\n            \"organization_id\": 38940,\n            \"name\": \"Test\",\n            \"code\": \"342\",\n            \"color\": \"#000000\",\n            \"created_at\": \"2025-08-06 14:31:13\",\n            \"updated_at\": \"2025-08-06 14:31:13\",\n            \"_permissions\": [\n                \"create\",\n                \"delete\",\n                \"read\",\n                \"update\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"f1d2d8e6-9a7d-499a-b442-45d73c0841b5"},{"name":"Retrieve department","id":"f901c536-cb7d-4088-bfcd-ecf82fa92220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.buddee.nl/departments/155907","urlObject":{"path":["departments","155907"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"5fa5dc0d-783b-4ad0-b0fd-9cfec66cd503","name":"Department","originalRequest":{"method":"GET","header":[],"url":"https://api.buddee.nl/departments/155907"},"status":"OK","code":200,"_postman_previewlanguage":null,"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, 07 Nov 2025 13:54:08 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\": 155907,\n        \"organization_id\": 38940,\n        \"name\": \"Marketing\",\n        \"code\": \"MRK\",\n        \"color\": \"#ff00bb\",\n        \"created_at\": \"2022-06-01 13:03:42\",\n        \"updated_at\": \"2023-11-24 14:10:28\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"f901c536-cb7d-4088-bfcd-ecf82fa92220"},{"name":"Create department","id":"29d0e272-b587-482b-9d65-7a64c96e5b9f","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\": \"Sales department\",\n    \"code\": \"SLSD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.buddee.nl/departments","urlObject":{"path":["departments"],"host":["https://api.buddee.nl"],"query":[],"variable":[]}},"response":[{"id":"d754441c-ca43-42ad-a5ed-8bad585a90fd","name":"department","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\n    \"name\": \"Sales department\",\n    \"code\": \"SLSD\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.buddee.nl/departments","host":["https://api.buddee.nl"],"path":["departments"],"query":[{"key":"name","value":"","type":"text","disabled":true},{"key":"expense_id","value":"","description":"Id of the related expense","type":"text","disabled":true},{"key":"leave_scheme_id","value":"","description":"Id of the related leave scheme","type":"text","disabled":true},{"key":"time_registration_id","value":"","description":"Id of the related time registration","type":"text","disabled":true},{"key":"approver_id","value":"","description":"Id of the related approved, this is the employee that approved the approval","type":"text","disabled":true},{"key":"status","value":"","description":"The status of the approval can be \"pending\", \"approved\", or \"rejected\".","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"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, 07 Nov 2025 13:52: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    \"data\": {\n        \"id\": 162666,\n        \"organization_id\": 38940,\n        \"name\": \"Sales department\",\n        \"code\": \"SLSD\",\n        \"color\": null,\n        \"created_at\": \"2025-11-07 13:52:11\",\n        \"updated_at\": \"2025-11-07 13:52:11\",\n        \"_permissions\": [\n            \"create\",\n            \"delete\",\n            \"read\",\n            \"update\"\n        ]\n    }\n}"}],"_postman_id":"29d0e272-b587-482b-9d65-7a64c96e5b9f"}],"id":"72de587a-031e-4cd9-82c9-50f9e0c1d2b4","_postman_id":"72de587a-031e-4cd9-82c9-50f9e0c1d2b4","description":""}],"event":[{"listen":"prerequest","script":{"id":"5dff2d46-e680-4c5e-aebe-1427f1d8b7c8","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"13efd88e-d3b2-4191-8515-f0af45d13ad6","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"url","value":"https://api.buddee.nl","type":"string"}]}