{"info":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","description":"<html><head></head><body><p>To use the API, you should create an API key under Advanced &gt; API Keys in your application. Enter your preferred Client ID and the system will generate a Client Secret. Use these details along with your user/employee credentials to generate an access token and use that access token to access each endpoint.</p>\n<p>Nearly every endpoint accepts some basic parameters via the query string including; <code>where</code>, <code>limit</code>, <code>offset</code> and <code>order_by</code> clauses (some knowledge of the underlying database structure is required or the structure can be interrogated via a GET request). In addition, the bespoke endpoint can accept, <code>select</code>, <code>from</code>, <code>group_by</code> and <code>having</code> clauses. By default, only a limited number of items are returned but the limit can be unset by setting <code>limit</code> to -1. If you are unbounding the limit, it is recommended that other filters are applied to avoid overloading the system.</p>\n<p>The system can accept raw SQL parameters (only if enabled by your system administrator and in a private/protected environment) however under normal circumstances, parameters can be supplied as URL encoded JSON strings (examples below). Aggregate functions <code>COUNT</code>, <code>SUM</code>, <code>AVG</code>, <code>MIN</code>, <code>MAX</code> are supported in <code>select</code>, <code>having</code> and <code>order_by</code> clauses. The following operators, <code>=</code> (equals), <code>&lt;&gt;</code> (not equals), <code>&gt;</code> (greater than), <code>&lt;</code> (less than), <code>&gt;=</code> (greater than or equal to), <code>&lt;=</code> (less than or equal to) are supported in <code>where</code> and <code>having</code> clauses and additionally, <code>where</code> also supports <code>LIKE</code> (like), <code>NOT LIKE</code> (not like), <code>IN</code> (in a set), <code>NOT IN</code> (not in a set). <code>where</code> and <code>order_by</code> also support <code>expr</code> instead of <code>column</code> in non-aggregated contexts. The <code>expr</code> must specify a type which can be e.g. <code>coalesce</code> (allowing a <code>fallback</code> value) or <code>bespoke</code> (exposing advanced functionality to the API). Example of JSON clauses:</p>\n<p><code>select</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"column\": \"employee_id\"\n  },\n  {\n    \"agg\": \"COUNT\",\n    \"column\": \"work_id\",\n    \"alias\": \"work_count\"\n  }\n]\n\n</code></pre>\n<p><code>where</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"group\",\n  \"logic\": \"AND\",\n  \"conditions\": [\n    {\n      \"column\": \"date_and_time\",\n      \"op\": \"&gt;=\",\n      \"value\": \"2026-01-01\"\n    },\n    {\n      \"column\": \"date_and_time\",\n      \"op\": \"&lt;=\",\n      \"value\": \"2026-12-31\"\n    },\n    {\n      \"column\": \"type\",\n      \"op\": \"IN\",\n      \"value\": [\n        1000,\n        8000\n      ]\n    },\n    {\n      \"type\": \"group\",\n      \"logic\": \"OR\",\n      \"conditions\": [\n        {\n          \"expr\": {\n            \"type\": \"coalesce\",\n            \"columns\": [\n              \"status\"\n            ],\n            \"fallback\": 0\n          },\n          \"op\": \"&gt;\",\n          \"value\": 0\n        },\n        {\n          \"expr\": {\n            \"type\": \"coalesce\",\n            \"columns\": [\n              \"override_anomaly\"\n            ],\n            \"fallback\": 0\n          },\n          \"op\": \"&gt;\",\n          \"value\": 0\n        }\n      ]\n    }\n  ]\n}\n\n</code></pre>\n<p><code>group_by</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>[\n  {\n    \"column\": \"employee_id\"\n  }\n]\n\n</code></pre><p><code>having</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>[\n  {\n    \"agg\": \"COUNT\",\n    \"column\": \"work_id\",\n    \"op\": \"&gt;\",\n    \"value\": 10\n  }\n]\n\n</code></pre><p><code>order_by</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>[\n  {\n    \"column\": \"work_count\",\n    \"direction\": \"DESC\"\n  }\n]\n\n</code></pre><p>Please note that some endpoints are read-only or only provide data in certain scopes (e.g. user or employee). Where endpoints allow writing data, while input is validated, you should set all appropriate fields, very few are filled automatically by the API.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"16789608","collectionId":"a272ed32-5b9c-4186-a1e2-6cd03366a589","publishedId":"2s9YsNfBRZ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"34465D","highlight":"F05A28"},"publishDate":"2024-01-15T09:04:07.000Z"},"item":[{"name":"Absence Entitlement Policies","item":[{"name":"Get Absence Entitlement Policy","id":"d2fa2b1e-7cc6-426c-82cc-298b826453c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-entitlement/1","description":"<p>Gets a single absence entitlement policy from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["absence-entitlement","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"17e3adbf-b14c-44d1-a8b9-f6e08cb88216","name":"Get Absence Entitlement Policy","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-entitlement/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:42:20 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"783"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"absence_entitlement_id\": 1,\n            \"description\": \"Standard 28 Days (Jan - Dec)\",\n            \"renewal_type\": 0,\n            \"renewal_month\": 1,\n            \"renewal_calendar_date\": 1,\n            \"calculate_year_service_relative_to\": null,\n            \"category_configuration\": null,\n            \"category_01\": \"0,0,0,0,,28,,36,247\\r0,1,99,0,,28,,3,10\",\n            \"category_02\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_03\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_04\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_05\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_06\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_07\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_08\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_09\": \"0,0,0,0,,8,,3,10\\r0,1,99,0,,8,,3,10\",\n            \"category_10\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\"\n        }\n    ]\n}"}],"_postman_id":"d2fa2b1e-7cc6-426c-82cc-298b826453c8"},{"name":"Get Absence Entitlement Policies","id":"71e69633-e048-4be7-a89e-401861ea7c6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-entitlement","description":"<p>Gets the list of absence entitlement policies.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["absence-entitlement"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"8ffca96d-e4ce-4985-9525-9ad5c7867897","name":"Get Absence Entitlement Policies","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-entitlement"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:42:07 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"3309"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"absence_entitlement_id\": 1,\n            \"description\": \"Standard 28 Days (Jan - Dec)\",\n            \"renewal_type\": 0,\n            \"renewal_month\": 1,\n            \"renewal_calendar_date\": 1,\n            \"calculate_year_service_relative_to\": null,\n            \"category_configuration\": null,\n            \"category_01\": \"0,0,0,0,,28,,36,247\\r0,1,99,0,,28,,3,10\",\n            \"category_02\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_03\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_04\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_05\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_06\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_07\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_08\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\",\n            \"category_09\": \"0,0,0,0,,8,,3,10\\r0,1,99,0,,8,,3,10\",\n            \"category_10\": \"0,0,0,0,,99,,3,10\\r0,1,99,0,,99,,3,10\"\n        },\n        {\n            \"absence_entitlement_id\": 2,\n            \"description\": \"210:00 Hours (Jan - Dec)\",\n            \"renewal_type\": 0,\n            \"renewal_month\": 1,\n            \"renewal_calendar_date\": 1,\n            \"calculate_year_service_relative_to\": null,\n            \"category_configuration\": null,\n            \"category_01\": \"1,0,0,,0:00,,210:00,36,247\\r1,1,99,,0:00,,210:00,3,10\",\n            \"category_02\": \"1,0,0,0,0,999,999:00,3,10\\r1,1,99,0,0,999,999:00,3,10\",\n            \"category_03\": \"1,0,0,0,0,999,999:00,3,10\\r1,1,99,0,0,999,999:00,3,10\",\n            \"category_04\": \"1,0,0,0,0,999,999:00,3,10\\r1,1,99,0,0,999,999:00,3,10\",\n            \"category_05\": \"1,0,0,0,0,999,999:00,3,10\\r1,1,99,0,0,999,999:00,3,10\",\n            \"category_06\": \"1,0,0,0,0,0,999:00,3,10\\r1,1,99,0,0,0,999:00,3,10\",\n            \"category_07\": \"1,0,0,0,0,0,999:00,3,10\\r1,1,99,0,0,0,999:00,3,10\",\n            \"category_08\": \"1,0,0,0,0,0,999:00,3,10\\r1,1,99,0,0,0,999:00,3,10\",\n            \"category_09\": \"1,0,0,0,0,0,999:00,3,10\\r1,1,99,0,0,0,999:00,3,10\",\n            \"category_10\": \"1,0,0,0,0,0,999:00,3,10\\r1,1,99,0,0,0,999:00,3,10\"\n        },\n        {\n            \"absence_entitlement_id\": 3,\n            \"description\": \"22 Days Jan-Dec Absence Entitlement\",\n            \"renewal_type\": 0,\n            \"renewal_month\": 1,\n            \"renewal_calendar_date\": 1,\n            \"calculate_year_service_relative_to\": null,\n            \"category_configuration\": null,\n            \"category_01\": \"0,0,0,0,0,22,0,0,30\\r0,1,99,0,0,22,0,0,10\",\n            \"category_02\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_03\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_04\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_05\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_06\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_07\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_08\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_09\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_10\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\"\n        },\n        {\n            \"absence_entitlement_id\": 4,\n            \"description\": \"35 Days Per Year (January to December)\",\n            \"renewal_type\": 0,\n            \"renewal_month\": 1,\n            \"renewal_calendar_date\": 1,\n            \"calculate_year_service_relative_to\": 0,\n            \"category_configuration\": \"{\\\"no_carry_over_prior_to_installation_date\\\":{\\\"1\\\":0,\\\"2\\\":0,\\\"3\\\":0,\\\"4\\\":0,\\\"5\\\":0,\\\"6\\\":0,\\\"7\\\":0,\\\"8\\\":0,\\\"9\\\":0,\\\"10\\\":0}}\",\n            \"category_01\": \"0,0,0,0,0,35,0,0,89\\r0,1,99,0,0,35,0,0,10\",\n            \"category_02\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_03\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_04\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_05\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_06\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_07\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_08\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_09\": \"0,0,0,0,0,8,0,0,0\\r0,1,99,0,0,0,0,0,0\",\n            \"category_10\": \"0,0,0,0,0,0,0,0,0\\r0,1,99,0,0,0,0,0,0\"\n        }\n    ]\n}"}],"_postman_id":"71e69633-e048-4be7-a89e-401861ea7c6d"}],"id":"501066f7-2f54-4568-b683-9f2fb12d3fb7","_postman_id":"501066f7-2f54-4568-b683-9f2fb12d3fb7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Absence Reason","item":[{"name":"Get Absence Reason","id":"a24aaa24-d74a-471a-acdc-f14e7ada126d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-reasons/5","description":"<p>Gets a single absence reason from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["absence-reasons","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"7b3d4cdd-2dc6-4f20-be04-be1f9f193a6f","name":"Get Absence Reason","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-reasons/5"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:42:59 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"150"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"paid\": 1\n        }\n    ]\n}"}],"_postman_id":"a24aaa24-d74a-471a-acdc-f14e7ada126d"},{"name":"Get Absence Reasons","id":"9231d382-8efe-4681-b547-83d2e10b4f93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-reasons","description":"<p>Gets the list of absence reasons.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["absence-reasons"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"02dc5191-44bf-4cc0-92c5-b49f7406f985","name":"Get Absence Reasons","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-reasons"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:42:42 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"3488"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"absence_ref_id\": -2,\n            \"description\": \"Business out at device\",\n            \"category\": 4,\n            \"deduct_value\": \".0000\",\n            \"colour\": 16761024,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": -1,\n            \"description\": \"Business in at device\",\n            \"category\": 4,\n            \"deduct_value\": \".0000\",\n            \"colour\": 16761024,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 2,\n            \"description\": \"Holiday Paid Half Day\",\n            \"category\": 0,\n            \"deduct_value\": \".5000\",\n            \"colour\": 16758637,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 3,\n            \"description\": \"Sickness Taken as Holiday Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9521664,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 4,\n            \"description\": \"Sickness Taken as Holiday Half Day\",\n            \"category\": 0,\n            \"deduct_value\": \".5000\",\n            \"colour\": 12542208,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 6,\n            \"description\": \"Holiday Unpaid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \".0000\",\n            \"colour\": 16758467,\n            \"paid\": 0\n        },\n        {\n            \"absence_ref_id\": 7,\n            \"description\": \"Maternity/Paternity/Adoption Full Day Paid\",\n            \"category\": 2,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 15842042,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 8,\n            \"description\": \"Maternity/Paternity/Adoption Half Day Paid\",\n            \"category\": 2,\n            \"deduct_value\": \".5000\",\n            \"colour\": 14972661,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 9,\n            \"description\": \"Maternity/Paternity/Adoption Unpaid Full Day\",\n            \"category\": 2,\n            \"deduct_value\": \".0000\",\n            \"colour\": 14103281,\n            \"paid\": 0\n        },\n        {\n            \"absence_ref_id\": 10,\n            \"description\": \"Time Off In Lieu (Full Day)\",\n            \"category\": 3,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 11251136,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 11,\n            \"description\": \"Time Off In Lieu (Half Day)\",\n            \"category\": 3,\n            \"deduct_value\": \".5000\",\n            \"colour\": 6119548,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 12,\n            \"description\": \"Out On Business\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 12311289,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 13,\n            \"description\": \"Training On Site\",\n            \"category\": 5,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 7845620,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 14,\n            \"description\": \"Training Off Site\",\n            \"category\": 5,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 3445231,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 15,\n            \"description\": \"Bereavement Paid Full Day\",\n            \"category\": 6,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 8421504,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 16,\n            \"description\": \"Bereavement Paid Half Day\",\n            \"category\": 6,\n            \"deduct_value\": \".5000\",\n            \"colour\": 12632256,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 17,\n            \"description\": \"Bereavement Unpaid\",\n            \"category\": 6,\n            \"deduct_value\": \".0000\",\n            \"colour\": 14737632,\n            \"paid\": 0\n        },\n        {\n            \"absence_ref_id\": 18,\n            \"description\": \"Authorised Absence\",\n            \"category\": 7,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 12167423,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 20,\n            \"description\": \"Sickness Unpaid Full Day\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 13300697,\n            \"paid\": 0\n        },\n        {\n            \"absence_ref_id\": 23,\n            \"description\": \"Holiday Unpaid (Half Day)\",\n            \"category\": 0,\n            \"deduct_value\": \".0000\",\n            \"colour\": 16739720,\n            \"paid\": 0\n        },\n        {\n            \"absence_ref_id\": 24,\n            \"description\": \"Sickness Paid (Half Day)\",\n            \"category\": 1,\n            \"deduct_value\": \".5000\",\n            \"colour\": 3002730,\n            \"paid\": 1\n        },\n        {\n            \"absence_ref_id\": 25,\n            \"description\": \"Sickness Unpaid (Half Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 1468469,\n            \"paid\": 0\n        },\n        {\n            \"absence_ref_id\": 26,\n            \"description\": \"Maternity/Paternity/Adoption Unpaid (Half Day)\",\n            \"category\": 2,\n            \"deduct_value\": \".0000\",\n            \"colour\": 11668940,\n            \"paid\": 0\n        },\n        {\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"paid\": 1\n        }\n    ]\n}"}],"_postman_id":"9231d382-8efe-4681-b547-83d2e10b4f93"},{"name":"Add Absence Reason","id":"49631f4a-7ef7-49df-a83d-a6bcd5a92fd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Absence Reason","type":"text"},{"key":"colour","value":"255","type":"text"},{"key":"paid","value":"1","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-reasons","description":"<p>Adds a new absence reason into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["absence-reasons"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"49631f4a-7ef7-49df-a83d-a6bcd5a92fd2"},{"name":"Update Absence Reason","id":"aa69a416-1446-43c9-924f-1324df5a3a07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Changed Absence Reason","type":"text"},{"key":"colour","value":"255","type":"text"},{"key":"paid","value":"1","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-reasons/22","description":"<p>Update an existing absence reason in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["absence-reasons","22"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa69a416-1446-43c9-924f-1324df5a3a07"},{"name":"Delete Absence Reason","id":"0c0f779f-9872-4f20-bed6-83ebe0068d8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/absence-reasons/22","description":"<p>Deletes a single absence reason from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["absence-reasons","22"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c0f779f-9872-4f20-bed6-83ebe0068d8c"}],"id":"c81a4b6a-360a-4bbe-83b8-c552c4ad047b","_postman_id":"c81a4b6a-360a-4bbe-83b8-c552c4ad047b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Access Events","item":[{"name":"Get Access Event","id":"04de4af2-c561-498e-a8f7-4023b716211a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/access/10","description":"<p>Gets a single access event record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["access","10"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"748b04c6-81c3-4637-82e4-4949ecc53397","name":"Get Access Event","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/access/10"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:46:12 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"388"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"access_archive_id\": 10,\n            \"employee_id\": 27,\n            \"terminal_id\": 5,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-07-12 16:46:11.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 27,\n                \"first_name\": \"Nathan\",\n                \"last_name\": \"Foster\"\n            }\n        }\n    ]\n}"}],"_postman_id":"04de4af2-c561-498e-a8f7-4023b716211a"},{"name":"Get Access Events","id":"41c54d6f-b2f1-4f2e-8838-49d5cb796191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/access","description":"<p>Get a list of access event records in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["access"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"f3d5f23e-36f0-483b-a774-e629bfcd02b9","name":"Get Access Events","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/access"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:43:27 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"33054"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"access_archive_id\": 1,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-07-10 15:38:58.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 2,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-07-10 15:54:50.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 3,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-07-11 10:02:45.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 4,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-07-11 10:08:01.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 7,\n            \"employee_id\": 25,\n            \"terminal_id\": 5,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-07-12 16:32:13.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 25,\n                \"first_name\": \"Owen\",\n                \"last_name\": \"Dixon\"\n            }\n        },\n        {\n            \"access_archive_id\": 8,\n            \"employee_id\": 27,\n            \"terminal_id\": 5,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-07-12 16:32:43.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 27,\n                \"first_name\": \"Nathan\",\n                \"last_name\": \"Foster\"\n            }\n        },\n        {\n            \"access_archive_id\": 9,\n            \"employee_id\": 25,\n            \"terminal_id\": 5,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-07-12 16:41:18.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 25,\n                \"first_name\": \"Owen\",\n                \"last_name\": \"Dixon\"\n            }\n        },\n        {\n            \"access_archive_id\": 10,\n            \"employee_id\": 27,\n            \"terminal_id\": 5,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-07-12 16:46:11.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 27,\n                \"first_name\": \"Nathan\",\n                \"last_name\": \"Foster\"\n            }\n        },\n        {\n            \"access_archive_id\": 11,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-07-15 10:53:28.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 12,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-07-16 11:33:10.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 13,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-07-23 12:24:00.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 14,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-08-06 15:15:27.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 15,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-08-13 11:17:01.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 16,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-08-15 16:09:07.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 17,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-08-15 16:11:25.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 18,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-08-15 16:12:48.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 19,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-08-20 10:24:42.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 20,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-08-20 11:38:05.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 21,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-08-20 11:39:03.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 22,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-08-20 11:39:16.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 23,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-05 16:59:53.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 24,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-05 17:05:09.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 25,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-06 09:35:27.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 27,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-09 12:12:08.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 29,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-09-09 14:44:52.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 30,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-09 14:45:08.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 31,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-09-09 14:48:26.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 32,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-11 13:56:09.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 33,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-12 10:48:09.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 34,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-12 12:16:23.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 35,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-13 12:48:51.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 36,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-18 09:58:51.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 37,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-09-18 10:54:15.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 38,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-18 10:56:15.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 39,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-09-18 10:59:30.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 40,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-09-19 11:55:59.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 41,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-19 11:55:39.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 42,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-09-19 11:57:49.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 43,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-09-23 15:15:16.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 44,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-01 15:29:36.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 45,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-02 11:47:11.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 46,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-03 11:53:01.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 47,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-07 11:08:29.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 48,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-08 12:23:18.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 49,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-08 14:44:21.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 50,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-08 14:48:47.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 51,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-10 12:22:19.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 52,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-10-11 11:06:48.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 53,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-11 11:06:36.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 54,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-10-11 14:00:00.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 55,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-17 10:34:22.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 56,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-17 11:41:48.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 57,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-17 11:43:34.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 58,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-18 11:33:34.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 59,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-18 15:17:23.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 60,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 11,\n            \"date_and_time\": \"2024-10-22 09:25:14.000\",\n            \"access_flag\": {\n                \"flag\": 11,\n                \"description\": \"Fire input on\",\n                \"icon\": \"fa fa-fire orange\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 61,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-23 11:42:29.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 62,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-30 09:20:12.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 63,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-10-31 11:28:12.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 64,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-10-31 11:28:23.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 65,\n            \"employee_id\": 28,\n            \"terminal_id\": 5,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-10-31 11:32:30.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 5,\n                \"description\": \"London Site Visitor Kiosk\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 66,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-11-08 16:06:29.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 67,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-11-21 10:52:32.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 68,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-11-21 10:57:34.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 69,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-11-21 10:59:52.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 70,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-11-29 11:09:35.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 71,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-11-29 11:09:03.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 72,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-11-29 11:10:24.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 73,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 11,\n            \"date_and_time\": \"2024-11-29 11:10:33.000\",\n            \"access_flag\": {\n                \"flag\": 11,\n                \"description\": \"Fire input on\",\n                \"icon\": \"fa fa-fire orange\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 74,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-11-29 11:12:53.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 75,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 1,\n            \"date_and_time\": \"2024-12-05 11:45:06.000\",\n            \"access_flag\": {\n                \"flag\": 1,\n                \"description\": \"Reader 1 access granted\",\n                \"icon\": \"fa fa-sign-in-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 76,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-12-05 11:44:44.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 77,\n            \"employee_id\": 28,\n            \"terminal_id\": 1,\n            \"flag\": 2,\n            \"date_and_time\": \"2024-12-05 14:00:00.000\",\n            \"access_flag\": {\n                \"flag\": 2,\n                \"description\": \"Reader 2 access granted\",\n                \"icon\": \"fa fa-sign-out-alt green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 1,\n                \"description\": \"GPS Device\"\n            },\n            \"employee\": {\n                \"employee_id\": 28,\n                \"first_name\": \"Caleb\",\n                \"last_name\": \"Simmons\"\n            }\n        },\n        {\n            \"access_archive_id\": 78,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-12-10 13:31:13.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 79,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 11,\n            \"date_and_time\": \"2024-12-11 10:35:24.000\",\n            \"access_flag\": {\n                \"flag\": 11,\n                \"description\": \"Fire input on\",\n                \"icon\": \"fa fa-fire orange\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 80,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-12-11 17:25:05.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 81,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-12-13 12:06:07.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 82,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2024-12-16 10:06:50.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 83,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-06 11:33:55.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 84,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 11,\n            \"date_and_time\": \"2025-01-06 11:33:59.000\",\n            \"access_flag\": {\n                \"flag\": 11,\n                \"description\": \"Fire input on\",\n                \"icon\": \"fa fa-fire orange\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 85,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-06 12:03:48.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 86,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-06 12:05:02.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 87,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-06 12:05:25.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 88,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-06 12:06:08.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 89,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-06 12:06:32.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 90,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-08 10:43:20.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 91,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-08 11:42:43.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 92,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-14 15:39:17.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 93,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-15 11:43:29.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 94,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-17 13:10:53.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 95,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-17 15:00:59.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 96,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-20 11:58:54.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 97,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-20 15:11:27.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 98,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-24 15:19:09.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 99,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 11,\n            \"date_and_time\": \"2025-01-24 15:20:00.000\",\n            \"access_flag\": {\n                \"flag\": 11,\n                \"description\": \"Fire input on\",\n                \"icon\": \"fa fa-fire orange\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 100,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-28 13:57:53.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 101,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-30 11:08:16.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 102,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-30 14:03:28.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 103,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-01-30 14:49:17.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        },\n        {\n            \"access_archive_id\": 104,\n            \"employee_id\": 0,\n            \"terminal_id\": 4,\n            \"flag\": 10,\n            \"date_and_time\": \"2025-02-03 11:25:28.000\",\n            \"access_flag\": {\n                \"flag\": 10,\n                \"description\": \"Fire input off\",\n                \"icon\": \"fa fa-fire green\"\n            },\n            \"terminal\": {\n                \"terminal_id\": 4,\n                \"description\": \"London Site Emergency\"\n            },\n            \"employee\": {\n                \"employee_id\": null,\n                \"first_name\": null,\n                \"last_name\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"41c54d6f-b2f1-4f2e-8838-49d5cb796191"},{"name":"Add Access Event","id":"17ce6089-26ad-4cc2-8c1d-fc613998e4b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"flag","value":"12","type":"text"},{"key":"terminal_id","value":"5","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/access","description":"<p>Adds a new access event record into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["access"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"17ce6089-26ad-4cc2-8c1d-fc613998e4b1"},{"name":"Update Access Event","id":"7a8373f7-7bd5-4610-8612-56865580e3c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"flag","value":"11","type":"text"},{"key":"terminal_id","value":"5","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/access/26","description":"<p>Update an existing access record in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["access","26"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a8373f7-7bd5-4610-8612-56865580e3c4"},{"name":"Delete Access Event","id":"e493d9b7-6576-4eee-9903-533f643139fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/access/26","description":"<p>Deletes a single access event record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["access","26"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e493d9b7-6576-4eee-9903-533f643139fd"}],"id":"1b35db8b-1e76-4c3b-aff3-d763023728cc","_postman_id":"1b35db8b-1e76-4c3b-aff3-d763023728cc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Audit Trail","item":[{"name":"Get Audit Trail Data","id":"dd76df2a-6141-4dca-ae38-32b11f4b8e95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/audit-trail?where=controller='login' AND user_type = 'user' AND user_id = 1 AND action = 'Login Failed'&limit=1&order_by=date_and_time DESC","description":"<p>Gets audit trail data. The sample query provided finds the most recent failed login event for a given user. As the audit trail can contain a significant amount of data, the warnings about providing appropriate filters and limits is particularly relevant to this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["audit-trail"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"where","value":"controller='login' AND user_type = 'user' AND user_id = 1 AND action = 'Login Failed'"},{"key":"limit","value":"1"},{"key":"order_by","value":"date_and_time DESC"}],"variable":[]}},"response":[{"id":"d516681d-2c59-497b-8c88-366d8db86352","name":"Get Audit Trail Data","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://demo.ait-connected.co.uk/Roster/rest/v1/audit-trail?where=controller='login' AND user_type = 'user' AND user_id = 1 AND action = 'Login Failed'&limit=1&order_by=date_and_time DESC","host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"path":["audit-trail"],"query":[{"key":"where","value":"controller='login' AND user_type = 'user' AND user_id = 1 AND action = 'Login Failed'"},{"key":"limit","value":"1"},{"key":"order_by","value":"date_and_time DESC"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:46:52 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"357"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"audit_trail_id\": 40334,\n            \"user_type\": \"user\",\n            \"user_id\": 1,\n            \"employee_id\": 1,\n            \"ip_address\": \"172.80.3.138\",\n            \"controller\": \"login\",\n            \"date_and_time\": \"2026-06-01 12:42:21.000\",\n            \"action\": \"Login Failed\",\n            \"json\": \"{\\\"new_data\\\":{\\\"User Name\\\":\\\"'Admin'\\\",\\\"Reason\\\":\\\"Invalid API credentials\\\"},\\\"old_data\\\":null}\",\n            \"record_identifier\": \"[]\"\n        }\n    ]\n}"}],"_postman_id":"dd76df2a-6141-4dca-ae38-32b11f4b8e95"}],"id":"b961ba66-7181-41e1-bfe7-d49283800f00","_postman_id":"b961ba66-7181-41e1-bfe7-d49283800f00","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Authorisation","item":[{"name":"Authorisation","id":"f5203ec0-ac2a-43e5-8958-c50cd7a3aa63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"PHP_AUTH_USER","value":"","type":"text"},{"key":"PHP_AUTH_PW","value":"","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"","type":"text"},{"key":"password","value":"","type":"text"},{"key":"scope","value":"","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/authorisation","description":"<p>Use your Client ID, Client Secret, Username and Password to obtain access to the API. If you maintain 2 sets of credentials with identical usernames, one of which is a user and one of which is an employee, you should specify scope=user or scope=employee to target the correct account type.</p>\n","urlObject":{"path":["authorisation"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5203ec0-ac2a-43e5-8958-c50cd7a3aa63"},{"name":"Token Info","id":"227abea5-0387-4af7-8c53-e38614fd73b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/token_info","description":"<p>Validates a previously issued token to ensure it can still be used to interact with the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["token_info"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"227abea5-0387-4af7-8c53-e38614fd73b1"}],"id":"045d3313-8ec6-4018-8b29-b0c3786cfaab","_postman_id":"045d3313-8ec6-4018-8b29-b0c3786cfaab","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Bespoke","item":[{"name":"Get All Bespoke Data","id":"92451b8b-03cc-4c6a-a23c-030f1315a690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bespoke?table=tbespoke_table","description":"<p>Get all data within a bespoke table. The table GET parameter must be specified and be listed in [Bespoke API Tables]. The sp GET parameter can be specified to execute a stored procedure listed in [Bespoke API Stored Procedures]. Parameters can be passed to the stored procedure by specifying a JSON string in the sp_payload GET parameter.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bespoke"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"tbespoke_table"}],"variable":[]}},"response":[],"_postman_id":"92451b8b-03cc-4c6a-a23c-030f1315a690"},{"name":"Get Bespoke Data","id":"f806dcf6-c879-4928-a403-9e54a0b2dce6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bespoke/5?table=tbespoke_table","description":"<p>Get a single piece of data within a bespoke table. The table GET parameter must be specified and be listed in [Bespoke API Tables]. The sp GET parameter can be specified to execute a stored procedure listed in [Bespoke API Stored Procedures]. Parameters can be passed to the stored procedure by specifying a JSON string in the sp_payload GET parameter.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bespoke","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"tbespoke_table"}],"variable":[]}},"response":[],"_postman_id":"f806dcf6-c879-4928-a403-9e54a0b2dce6"},{"name":"Add Bespoke Data","id":"2a536751-c3c5-4c7b-9d82-fd6dfaf7b895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"bespoke_field","value":"Bespoke Data","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bespoke?table=tbespoke_table","description":"<p>Adds a new bespoke record into the system. The table GET parameter must be specified and be listed in [Bespoke API Tables]. The sp GET parameter can be specified to execute a stored procedure listed in [Bespoke API Stored Procedures]. Parameters can be passed to the stored procedure by specifying a JSON string in the sp_payload GET parameter.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bespoke"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"tbespoke_table"}],"variable":[]}},"response":[],"_postman_id":"2a536751-c3c5-4c7b-9d82-fd6dfaf7b895"},{"name":"Update Bespoke Data","id":"908542e0-c24f-4880-8a11-2631b4530c23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"bespoke_field","value":"Updated Bespoke Data","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bespoke/5?table=tbespoke_table","description":"<p>Update an existing bespoke record in the system. The table GET parameter must be specified and be listed in [Bespoke API Tables]. The sp GET parameter can be specified to execute a stored procedure listed in [Bespoke API Stored Procedures]. Parameters can be passed to the stored procedure by specifying a JSON string in the sp_payload GET parameter.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bespoke","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"tbespoke_table"}],"variable":[]}},"response":[],"_postman_id":"908542e0-c24f-4880-8a11-2631b4530c23"},{"name":"Delete Bespoke Data","id":"cab4d835-6604-474b-bb5f-1ecddc398528","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bespoke/5?table=tbespoke_table","description":"<p>Deletes a single bespoke record from the system. The table GET parameter must be specified and be listed in [Bespoke API Tables]. The sp GET parameter can be specified to execute a stored procedure listed in [Bespoke API Stored Procedures]. Parameters can be passed to the stored procedure by specifying a JSON string in the sp_payload GET parameter.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bespoke","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"tbespoke_table"}],"variable":[]}},"response":[],"_postman_id":"cab4d835-6604-474b-bb5f-1ecddc398528"}],"id":"7e6215b4-418e-4d7b-a213-26eec4e111e3","_postman_id":"7e6215b4-418e-4d7b-a213-26eec4e111e3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Booking","item":[{"name":"Get Booking","id":"e88d548a-83ab-4d9b-ad0c-517c39fd7f7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bookings/20235","description":"<p>Gets a single unprocessed booking from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bookings","20235"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"500fd244-8bab-4607-973c-83e40220096c","name":"Get Booking","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bookings/20235"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:29:20 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"295"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 56,\n            \"date_and_time\": \"2026-04-09 16:42:49.000\",\n            \"type\": 2000,\n            \"terminal_id\": 1,\n            \"quantity\": 0,\n            \"memo\": null,\n            \"source\": 0,\n            \"flag\": 0,\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"source_type\": 1,\n            \"job_id\": 0,\n            \"operation_id\": 11,\n            \"cost_centre_id\": null,\n            \"rate\": null\n        }\n    ]\n}"}],"_postman_id":"e88d548a-83ab-4d9b-ad0c-517c39fd7f7f"},{"name":"Get Bookings","id":"5c632e70-c9d2-4a2e-ae89-3b0810dc0647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bookings","description":"<p>Get a list of unprocessed bookings in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bookings"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"7a76ea8a-0ab5-4a28-b841-db30bbc3d019","name":"Get Bookings","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bookings"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:26:19 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"295"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 56,\n            \"date_and_time\": \"2026-04-09 16:42:49.000\",\n            \"type\": 2000,\n            \"terminal_id\": 1,\n            \"quantity\": 0,\n            \"memo\": null,\n            \"source\": 0,\n            \"flag\": 0,\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"source_type\": 1,\n            \"job_id\": 0,\n            \"operation_id\": 11,\n            \"cost_centre_id\": null,\n            \"rate\": null\n        }\n    ]\n}"}],"_postman_id":"5c632e70-c9d2-4a2e-ae89-3b0810dc0647"},{"name":"Add Booking","id":"7aa778a4-c5f2-47d3-b8ce-f8f47ea8f4f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"type","value":"1000","type":"text"},{"key":"terminal_id","value":"1","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bookings","description":"<p>Adds a new unprocessed booking into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bookings"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7aa778a4-c5f2-47d3-b8ce-f8f47ea8f4f2"},{"name":"Update Booking","id":"868dd624-077e-4b99-852f-30ec2dd4e279","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"type","value":"1000","type":"text"},{"key":"terminal_id","value":"1","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"0","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bookings/333813","description":"<p>Update an existing unprocessed booking in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bookings","333813"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"868dd624-077e-4b99-852f-30ec2dd4e279"},{"name":"Delete Booking","id":"fa62775f-8a51-4c12-96d7-4654c0546f5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/bookings/333813","description":"<p>Deletes a single unprocessed booking from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["bookings","333813"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa62775f-8a51-4c12-96d7-4654c0546f5b"}],"id":"3e39478d-251e-4bd4-b848-101333e52268","_postman_id":"3e39478d-251e-4bd4-b848-101333e52268","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Company Document","item":[{"name":"Get Company Documents","id":"c81b186b-1e1b-4380-be76-c47e0abdb666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/company-documents","description":"<p>Gets company documents in the system along with their category, their priority and their distribution range.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["company-documents"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c81b186b-1e1b-4380-be76-c47e0abdb666"}],"id":"baf5f669-9d43-490f-b9e8-87ad9f226d02","_postman_id":"baf5f669-9d43-490f-b9e8-87ad9f226d02","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Company Grouping","item":[{"name":"Get Company Grouping 01","id":"8c268e32-9582-4c0e-952f-71b1a953c5e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/company-grouping/9999?company_grouping=1","description":"<p>Gets a single record from the 1st grouping. The company_grouping GET parameter must be specified and be between 1 and the number of groupings in your system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["company-grouping","9999"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"company_grouping","value":"1"}],"variable":[]}},"response":[],"_postman_id":"8c268e32-9582-4c0e-952f-71b1a953c5e4"},{"name":"Get Company Grouping 01s","id":"730fda57-eb33-4229-8d76-1b103c440831","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/company-grouping?company_grouping=1","description":"<p>Gets the list of the 1st grouping. The company_grouping GET parameter must be specified and be between 1 and the number of groupings in your system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["company-grouping"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"company_grouping","value":"1"}],"variable":[]}},"response":[{"id":"c840aa33-f871-455e-9c0c-95379f1f7fc2","name":"Get Company Grouping 01s","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://demo.ait-connected.co.uk/Roster/rest/v1/company-grouping?company_grouping=1","host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"path":["company-grouping"],"query":[{"key":"company_grouping","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:33:07 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"379"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"company_grouping_01_id\": 5,\n            \"code\": \"BIRM\",\n            \"description\": \"Birmingham\"\n        },\n        {\n            \"company_grouping_01_id\": 6,\n            \"code\": \"NOTT\",\n            \"description\": \"Nottingham\"\n        },\n        {\n            \"company_grouping_01_id\": 7,\n            \"code\": \"CARD\",\n            \"description\": \"Cardiff\"\n        },\n        {\n            \"company_grouping_01_id\": 8,\n            \"code\": \"MANC\",\n            \"description\": \"Manchester\"\n        },\n        {\n            \"company_grouping_01_id\": 9,\n            \"code\": \"LOND\",\n            \"description\": \"London\"\n        }\n    ]\n}"}],"_postman_id":"730fda57-eb33-4229-8d76-1b103c440831"},{"name":"Add Company Grouping 01","id":"100ffeb8-0899-41ad-acc5-0e407b896265","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"TEST","type":"text"},{"key":"description","value":"Test","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/company-grouping?company_grouping=1","description":"<p>Adds a new record to the 1st grouping. The company_grouping GET parameter must be specified and be between 1 and the number of groupings in your system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["company-grouping"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"company_grouping","value":"1"}],"variable":[]}},"response":[],"_postman_id":"100ffeb8-0899-41ad-acc5-0e407b896265"},{"name":"Update Company Grouping 01","id":"0e5b4806-b1df-45a5-bc6b-f482ae58ec2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"TEST2","type":"text"},{"key":"description","value":"Test Two","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/company-grouping-01/15?company_grouping=1","description":"<p>Updates an existing record in the 1st grouping. The company_grouping GET parameter must be specified and be between 1 and the number of groupings in your system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["company-grouping-01","15"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"company_grouping","value":"1"}],"variable":[]}},"response":[],"_postman_id":"0e5b4806-b1df-45a5-bc6b-f482ae58ec2c"},{"name":"Delete Company Grouping 01","id":"9aa6b22c-4182-4a88-ba57-cd7421901943","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/company-grouping-01/15?company_grouping=1","description":"<p>Deletes a single record from the 1st grouping. The company_grouping GET parameter must be specified and be between 1 and the number of groupings in your system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["company-grouping-01","15"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"company_grouping","value":"1"}],"variable":[]}},"response":[],"_postman_id":"9aa6b22c-4182-4a88-ba57-cd7421901943"}],"id":"ebbf22a1-559e-4362-8ca9-efbd4545a5fa","_postman_id":"ebbf22a1-559e-4362-8ca9-efbd4545a5fa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Cost Centre","item":[{"name":"Get Cost Centres","id":"7150e264-3f9a-4faa-94c5-7f9dc47e25d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/cost-centres","description":"<p>Gets cost centres in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["cost-centres"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"69f82ba6-1c35-430b-90cd-3e94104b935b","name":"Get Cost Centres","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/cost-centres"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:33:55 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"2923"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"cost_centre_id\": -1,\n            \"description\": \"[Attendance]\"\n        },\n        {\n            \"cost_centre_id\": 1,\n            \"description\": \"NA\"\n        },\n        {\n            \"cost_centre_id\": 2,\n            \"description\": \"ActIn Time Ltd\"\n        },\n        {\n            \"cost_centre_id\": 3,\n            \"description\": \"Engineers\"\n        },\n        {\n            \"cost_centre_id\": 4,\n            \"description\": \"ANDRE\"\n        },\n        {\n            \"cost_centre_id\": 5,\n            \"description\": \"Weekly\"\n        },\n        {\n            \"cost_centre_id\": 6,\n            \"description\": \"Web\"\n        },\n        {\n            \"cost_centre_id\": 7,\n            \"description\": \"Head Office\"\n        },\n        {\n            \"cost_centre_id\": 8,\n            \"description\": \"Shop 3\"\n        },\n        {\n            \"cost_centre_id\": 9,\n            \"description\": \"Test\"\n        },\n        {\n            \"cost_centre_id\": 10,\n            \"description\": \"NEIL\"\n        },\n        {\n            \"cost_centre_id\": 11,\n            \"description\": \"Salary\"\n        },\n        {\n            \"cost_centre_id\": 12,\n            \"description\": \"Remote Worker\"\n        },\n        {\n            \"cost_centre_id\": 13,\n            \"description\": \"Sales\"\n        },\n        {\n            \"cost_centre_id\": 14,\n            \"description\": \"AR\"\n        },\n        {\n            \"cost_centre_id\": 15,\n            \"description\": \"Shop 4\"\n        },\n        {\n            \"cost_centre_id\": 16,\n            \"description\": \"Admin\"\n        },\n        {\n            \"cost_centre_id\": 17,\n            \"description\": \"WENDY\"\n        },\n        {\n            \"cost_centre_id\": 18,\n            \"description\": \"DAN\"\n        },\n        {\n            \"cost_centre_id\": 19,\n            \"description\": \"Shop 1\"\n        },\n        {\n            \"cost_centre_id\": 20,\n            \"description\": \"JSB\"\n        },\n        {\n            \"cost_centre_id\": 21,\n            \"description\": \"Shop 2\"\n        },\n        {\n            \"cost_centre_id\": 22,\n            \"description\": \"On Call\"\n        },\n        {\n            \"cost_centre_id\": 23,\n            \"description\": \"Test [1]\"\n        },\n        {\n            \"cost_centre_id\": 238,\n            \"description\": \"Engineering\"\n        },\n        {\n            \"cost_centre_id\": 239,\n            \"description\": \"Factory\"\n        },\n        {\n            \"cost_centre_id\": 240,\n            \"description\": \"Wisegrove Ltd\"\n        },\n        {\n            \"cost_centre_id\": 241,\n            \"description\": \" ActIn Time Ltd\"\n        },\n        {\n            \"cost_centre_id\": 246,\n            \"description\": \"Joe Bloggs Ltd\"\n        },\n        {\n            \"cost_centre_id\": 1121,\n            \"description\": \"Test Company Ltd\"\n        },\n        {\n            \"cost_centre_id\": 1122,\n            \"description\": \"Hertford\"\n        },\n        {\n            \"cost_centre_id\": 1123,\n            \"description\": \"Support\"\n        },\n        {\n            \"cost_centre_id\": 1124,\n            \"description\": \"Bespoke\"\n        },\n        {\n            \"cost_centre_id\": 1125,\n            \"description\": \"Distribution\"\n        },\n        {\n            \"cost_centre_id\": 1126,\n            \"description\": \"Projects\"\n        },\n        {\n            \"cost_centre_id\": 1137,\n            \"description\": \"Windsor\"\n        },\n        {\n            \"cost_centre_id\": 1138,\n            \"description\": \"Salaried\"\n        },\n        {\n            \"cost_centre_id\": 1542,\n            \"description\": \"London\"\n        },\n        {\n            \"cost_centre_id\": 1543,\n            \"description\": \"Quality Control\"\n        },\n        {\n            \"cost_centre_id\": 1544,\n            \"description\": \"Steelridge Manufacturing\"\n        },\n        {\n            \"cost_centre_id\": 1545,\n            \"description\": \"Administration\"\n        },\n        {\n            \"cost_centre_id\": 1546,\n            \"description\": \"Customer Service\"\n        },\n        {\n            \"cost_centre_id\": 1547,\n            \"description\": \"Maintenance\"\n        },\n        {\n            \"cost_centre_id\": 1548,\n            \"description\": \"Production\"\n        },\n        {\n            \"cost_centre_id\": 1549,\n            \"description\": \"Warehouse\"\n        },\n        {\n            \"cost_centre_id\": 1550,\n            \"description\": \"Finance\"\n        },\n        {\n            \"cost_centre_id\": 1551,\n            \"description\": \"Birmingham\"\n        },\n        {\n            \"cost_centre_id\": 1552,\n            \"description\": \"Precision Forge\"\n        },\n        {\n            \"cost_centre_id\": 1553,\n            \"description\": \"Production Manager\"\n        },\n        {\n            \"cost_centre_id\": 1554,\n            \"description\": \"Quality Assurance Director\"\n        },\n        {\n            \"cost_centre_id\": 1555,\n            \"description\": \"Warehouse Manager\"\n        },\n        {\n            \"cost_centre_id\": 1556,\n            \"description\": \"Finance Manager\"\n        },\n        {\n            \"cost_centre_id\": 1557,\n            \"description\": \"Managing Director\"\n        },\n        {\n            \"cost_centre_id\": 1558,\n            \"description\": \"Hourly\"\n        },\n        {\n            \"cost_centre_id\": 1559,\n            \"description\": \"Customer Service Manager\"\n        },\n        {\n            \"cost_centre_id\": 1560,\n            \"description\": \"Nottingham\"\n        },\n        {\n            \"cost_centre_id\": 1561,\n            \"description\": \"Manchester\"\n        },\n        {\n            \"cost_centre_id\": 1562,\n            \"description\": \"Cardiff\"\n        }\n    ]\n}"}],"_postman_id":"7150e264-3f9a-4faa-94c5-7f9dc47e25d2"}],"id":"050bc127-69a1-4cb6-99c8-3b96997d7ea7","_postman_id":"050bc127-69a1-4cb6-99c8-3b96997d7ea7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Daily Schedule","item":[{"name":"Get Daily Schedule","id":"d8aa9d34-1fdf-4683-86ae-cd8fe902fa8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/daily-schedules/1","description":"<p>Gets the list of daily schedules.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["daily-schedules","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8aa9d34-1fdf-4683-86ae-cd8fe902fa8d"},{"name":"Get Daily Schedules","id":"a74ecc80-3c4e-4d19-a0f6-7171cc414d1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/daily-schedules","description":"<p>Gets the list of daily schedules.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["daily-schedules"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"a3e91111-2245-40c3-a869-926bbaf5a720","name":"Get Daily Schedules","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/daily-schedules"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:34:06 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"10298"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 2,\n            \"code\": \"DS002\",\n            \"description\": \"14:00 - 22:00 30 min lunch deducted\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 10:00:00.000\",\n            \"start_time\": \"1899-12-30 14:00:00.000\",\n            \"finish_time\": \"1899-12-30 22:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 02:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 18:00:00.000\",\n            \"start_time\": \"1899-12-30 22:00:00.000\",\n            \"finish_time\": \"1899-12-30 06:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 10:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 5,\n            \"code\": \"RD001\",\n            \"description\": \"Rest Day @ x1.5 OT  (No break deducted)\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 6,\n            \"code\": \"RD002\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted)\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 10,\n            \"code\": \"RD005\",\n            \"description\": \"Rest Day @ Surplus  (No break deducted)\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 11,\n            \"code\": \"CLIP0001\",\n            \"description\": \"09:00-17:30 60 min lunch deducted\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 04:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:30:00.000\",\n            \"latest_finish_time\": \"1899-12-30 03:30:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 12,\n            \"code\": \"1800020X\",\n            \"description\": \"18:00-02:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 14:00:00.000\",\n            \"start_time\": \"1899-12-30 18:00:00.000\",\n            \"finish_time\": \"1899-12-30 02:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 06:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 03:00:00.000\",\n            \"start_time\": \"1899-12-30 07:00:00.000\",\n            \"finish_time\": \"1899-12-30 18:15:00.000\",\n            \"latest_finish_time\": \"1899-12-30 22:15:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:00:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 15,\n            \"code\": \"CLIP0005\",\n            \"description\": \"Rest Day x1.5 - Clip\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 16:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 16,\n            \"code\": \"CLIP0006\",\n            \"description\": \"Rest Day x2 - Clip\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 16:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 08:00:00.000\",\n            \"absence_target_time\": \"1899-12-30 08:00:00.000\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 08:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:30:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 21,\n            \"code\": \"09001200\",\n            \"description\": \"09:00-12:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 12:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 16:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 22,\n            \"code\": \"15001800\",\n            \"description\": \"15:00-18:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 11:00:00.000\",\n            \"start_time\": \"1899-12-30 15:00:00.000\",\n            \"finish_time\": \"1899-12-30 18:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 22:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 23,\n            \"code\": \"09001800\",\n            \"description\": \"09:00-18:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 18:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 22:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 24,\n            \"code\": \"09001500\",\n            \"description\": \"09:00-15:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 15:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 19:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 25,\n            \"code\": \"09002000\",\n            \"description\": \"09:00-20:00\",\n            \"schedule_type\": 0,\n            \"workday\": 1,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 20:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 00:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 26,\n            \"code\": \"FLEXI001\",\n            \"description\": \"08:15-17:00 1hr lunch deducted\",\n            \"schedule_type\": 1,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:45:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:45:00.000\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 08:15:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 22:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 27,\n            \"code\": \"FLEXI002\",\n            \"description\": \"08:30-17:00 1hr lunch deducted\",\n            \"schedule_type\": 1,\n            \"workday\": 1,\n            \"target_time\": \"1899-12-30 07:30:00.000\",\n            \"absence_target_time\": \"1899-12-30 07:30:00.000\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 08:30:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 22:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 28,\n            \"code\": \"FLEXREST\",\n            \"description\": \"Flexi Rest Day\",\n            \"schedule_type\": 1,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 08:30:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 22:00:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 29,\n            \"code\": \"DS07\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) Cost Centre Link\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"daily_schedule_id\": 30,\n            \"code\": \"COPY0001\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) Cost Centre Link\",\n            \"schedule_type\": 0,\n            \"workday\": 0,\n            \"target_time\": null,\n            \"absence_target_time\": null,\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        }\n    ]\n}"}],"_postman_id":"a74ecc80-3c4e-4d19-a0f6-7171cc414d1e"}],"id":"96d213af-d936-4cd7-9fc9-cf81b2b54c6c","_postman_id":"96d213af-d936-4cd7-9fc9-cf81b2b54c6c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Document Category","item":[{"name":"Get Document Categories","id":"544042ef-1aa2-4e1a-ac24-e678e5d5ab98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/document-categories","description":"<p>Gets the list of document categories. If called from the employee context, the PWA policy will be applied to restrict which categories are visible. The pwa_context GET parameter can be one of job, personnel-view, personnel-add depending on which categories should be returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["document-categories"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"59e2fe5f-62d4-4d5b-9a50-4167becfea95","name":"Get Document Categories","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/document-categories"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:35:28 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"1012"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"document_ref_id\": -13,\n            \"description\": \"Achievement\"\n        },\n        {\n            \"document_ref_id\": -12,\n            \"description\": \"Disclosure and Barring Service\"\n        },\n        {\n            \"document_ref_id\": -11,\n            \"description\": \"Right to Work\"\n        },\n        {\n            \"document_ref_id\": -10,\n            \"description\": \"Accident\"\n        },\n        {\n            \"document_ref_id\": -9,\n            \"description\": \"Vehicle Mileage\"\n        },\n        {\n            \"document_ref_id\": -8,\n            \"description\": \"Training and Qualification\"\n        },\n        {\n            \"document_ref_id\": -7,\n            \"description\": \"Employment\"\n        },\n        {\n            \"document_ref_id\": -6,\n            \"description\": \"Interview\"\n        },\n        {\n            \"document_ref_id\": -5,\n            \"description\": \"Medical Review\"\n        },\n        {\n            \"document_ref_id\": -4,\n            \"description\": \"Education\"\n        },\n        {\n            \"document_ref_id\": -3,\n            \"description\": \"Disciplinary\"\n        },\n        {\n            \"document_ref_id\": -2,\n            \"description\": \"Appraisal\"\n        },\n        {\n            \"document_ref_id\": -1,\n            \"description\": \"Return to work interview\"\n        },\n        {\n            \"document_ref_id\": 1,\n            \"description\": \"General\"\n        },\n        {\n            \"document_ref_id\": 2,\n            \"description\": \"Reasonable Adjustment\"\n        },\n        {\n            \"document_ref_id\": 3,\n            \"description\": \"Grievance\"\n        },\n        {\n            \"document_ref_id\": 4,\n            \"description\": \"Policy and Procedure\"\n        },\n        {\n            \"document_ref_id\": 7,\n            \"description\": \"Onboarding\"\n        }\n    ]\n}"}],"_postman_id":"544042ef-1aa2-4e1a-ac24-e678e5d5ab98"}],"id":"e1898640-8fe8-429a-a04a-0921840934ac","_postman_id":"e1898640-8fe8-429a-a04a-0921840934ac","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Emergency","item":[{"name":"Get Emergency","id":"f32f816a-9ac7-404f-943c-a6241165f081","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/emergency","description":"<p>Get details of an active emergency in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["emergency"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"94c702bf-7015-425e-9e0d-9b72969ea8e2","name":"Get Emergency","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/emergency"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:39:21 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"530"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"emergency_id\": 266,\n            \"type\": \"fire\",\n            \"start_trigger_date_and_time\": \"2026-06-01 14:34:27.000\",\n            \"start_date_and_time\": \"2026-06-01 14:34:27.000\",\n            \"stop_trigger_date_and_time\": null,\n            \"stop_date_and_time\": null,\n            \"terminal_id\": 4,\n            \"ended_date_and_time\": null,\n            \"ended_user_id\": null,\n            \"user_id\": 18,\n            \"zone_id\": 1,\n            \"token_started_scope\": \"user\",\n            \"token_started_user_name\": \"Admin\",\n            \"token_stopped_scope\": null,\n            \"token_stopped_user_name\": null,\n            \"terminal_description\": \"London Site Emergency\",\n            \"zone_description\": \"On Site - London\"\n        }\n    ]\n}"}],"_postman_id":"f32f816a-9ac7-404f-943c-a6241165f081"},{"name":"Mark Employee Safe","id":"d19b2a9c-ed3f-4627-b13e-79888e6102fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"longitude","value":"-6.2604","type":"text"},{"key":"latitude","value":"53.3396","type":"text"},{"key":"muster_point_id","value":"1","type":"text"},{"key":"emergency_id","value":"1","type":"text"},{"key":"in_muster_point","value":"0","type":"text"},{"key":"in_muster_point_tolerance","value":"1","type":"text"},{"key":"muster_point_tolerance","value":"0.005","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/emergency","description":"<p>Marks an employee as safe during an emergency situation. The context GET parameter can be specified as user if an employee who is also a user wishes to mark employees under their remit as safe/unsafe.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["emergency"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"d19b2a9c-ed3f-4627-b13e-79888e6102fd"},{"name":"Mark Employee Unsafe","id":"f3eeb72c-1c1e-40d6-8e52-aaf5a52abeaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"longitude","value":"-6.2604","type":"text"},{"key":"latitude","value":"53.3396","type":"text"},{"key":"muster_point_id","value":"1","type":"text"},{"key":"emergency_id","value":"1","type":"text"},{"key":"in_muster_point","value":"0","type":"text"},{"key":"in_muster_point_tolerance","value":"1","type":"text"},{"key":"muster_point_tolerance","value":"0.005","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/emergency/5","description":"<p>Marks an employee as unsafe during an emergency situation. The context GET parameter can be specified as user if an employee who is also a user wishes to mark employees under their remit as safe/unsafe.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["emergency","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3eeb72c-1c1e-40d6-8e52-aaf5a52abeaf"},{"name":"Start Emergency","id":"3885f108-d886-41e6-ada4-cb1feefe9cf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"longitude","value":"-6.2604","type":"text"},{"key":"latitude","value":"53.3396","type":"text"},{"key":"muster_point_id","value":"1","type":"text"},{"key":"emergency_id","value":"1","type":"text"},{"key":"in_muster_point","value":"0","type":"text"},{"key":"in_muster_point_tolerance","value":"1","type":"text"},{"key":"muster_point_tolerance","value":"0.005","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/emergency?context=emergency-start","description":"<p>If the context GET parameter is emergency-start, the system will use the [Default Fire*] settings to start an emergency.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["emergency"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"context","value":"emergency-start"}],"variable":[]}},"response":[],"_postman_id":"3885f108-d886-41e6-ada4-cb1feefe9cf0"},{"name":"Stop Emergency","id":"5c73bf51-ba5b-4c9b-889d-19533102aa53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"longitude","value":"-6.2604","type":"text"},{"key":"latitude","value":"53.3396","type":"text"},{"key":"muster_point_id","value":"1","type":"text"},{"key":"emergency_id","value":"1","type":"text"},{"key":"in_muster_point","value":"0","type":"text"},{"key":"in_muster_point_tolerance","value":"1","type":"text"},{"key":"muster_point_tolerance","value":"0.005","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/emergency?context=emergency-stop","description":"<p>If the context GET parameter is emergency-stop, the system will use the [Default Fire*] settings to stop an emergency.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["emergency"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"context","value":"emergency-stop"}],"variable":[]}},"response":[],"_postman_id":"5c73bf51-ba5b-4c9b-889d-19533102aa53"},{"name":"Trigger Fire","id":"eb1e11e1-c52c-498f-84f2-19eeea385483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"terminal_code\":\"1\",\"fire\":true,\"timestamp\":1628335357794}"},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/emergency/fire","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["emergency","fire"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"15d4a5ea-3384-446b-a145-54ef340accba","name":"Trigger Fire","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\"terminal_code\":\"1\",\"fire\":true,\"timestamp\":1628335357794}"},"url":"https://demo-full.trspro.live/Roster/emergency/fire"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Tue, 25 Jul 2023 14:23:28 GMT"},{"key":"Content-Type","value":"text/html; charset=UTF-8"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-Powered-By","value":"TRS Pro"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eb1e11e1-c52c-498f-84f2-19eeea385483"}],"id":"d40620b8-3ab4-4997-9597-17abd6c4a344","_postman_id":"d40620b8-3ab4-4997-9597-17abd6c4a344","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee","item":[{"name":"Employee Absence Entitlement","item":[{"name":"Get Employee Absence Entitlement Periods","id":"95209c42-fbf9-438e-9967-ae6c6b3c2547","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absence-entitlement-periods","description":"<p>Gets a list of absence entitlement periods for the employees.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-absence-entitlement-periods"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"8b860099-9c0d-40c9-b425-8ea866872f05","name":"Get Employee Absence Entitlement Periods","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absence-entitlement-periods"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:24:30 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"59540"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"28.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \"8.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"8.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"8.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"8.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 237,\n            \"employee_id\": 1,\n            \"period_from\": \"2026-01-01 00:00:00.000\",\n            \"period_to\": \"2026-12-31 00:00:00.000\",\n            \"year_service\": 10,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \"5.0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"23.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \"8.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"8.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"8.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"8.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 187,\n            \"employee_id\": 1,\n            \"period_from\": \"2025-01-01 00:00:00.000\",\n            \"period_to\": \"2025-12-31 00:00:00.000\",\n            \"year_service\": 9,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \"1.0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"27.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \"7.0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"92.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \"8.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"8.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"8.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"8.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 20,\n            \"employee_id\": 1,\n            \"period_from\": \"2024-01-01 00:00:00.000\",\n            \"period_to\": \"2024-12-31 00:00:00.000\",\n            \"year_service\": 8,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \"4.0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"24.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \"8.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"8.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"8.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"8.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 13,\n            \"employee_id\": 1,\n            \"period_from\": \"2023-01-01 00:00:00.000\",\n            \"period_to\": \"2023-12-31 00:00:00.000\",\n            \"year_service\": 7,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \"8.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"8.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"8.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"8.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \"99.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"99.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"99.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"99.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 8,\n            \"employee_id\": 1,\n            \"period_from\": \"2022-01-01 00:00:00.000\",\n            \"period_to\": \"2022-12-31 00:00:00.000\",\n            \"year_service\": 6,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"28.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 7,\n            \"employee_id\": 1,\n            \"period_from\": \"2021-01-01 00:00:00.000\",\n            \"period_to\": \"2021-12-31 00:00:00.000\",\n            \"year_service\": 5,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"28.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 6,\n            \"employee_id\": 1,\n            \"period_from\": \"2020-01-01 00:00:00.000\",\n            \"period_to\": \"2020-12-31 00:00:00.000\",\n            \"year_service\": 4,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"28.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 5,\n            \"employee_id\": 1,\n            \"period_from\": \"2019-01-01 00:00:00.000\",\n            \"period_to\": \"2019-12-31 00:00:00.000\",\n            \"year_service\": 3,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"28.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 4,\n            \"employee_id\": 1,\n            \"period_from\": \"2018-01-01 00:00:00.000\",\n            \"period_to\": \"2018-12-31 00:00:00.000\",\n            \"year_service\": 2,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"28.0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 10,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 9,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 8,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 7,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 6,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 5,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 4,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 3,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 2,\n            \"format\": 0,\n            \"period_allowance_day\": \".0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \".0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \".0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \".0000\",\n            \"unallocated_minute\": 0\n        },\n        {\n            \"employee_absence_entitlement_id\": 3,\n            \"employee_id\": 1,\n            \"period_from\": \"2017-01-01 00:00:00.000\",\n            \"period_to\": \"2017-12-31 00:00:00.000\",\n            \"year_service\": 1,\n            \"category\": 1,\n            \"format\": 0,\n            \"period_allowance_day\": \"28.0000\",\n            \"period_allowance_minute\": 0,\n            \"allowance_day\": \"28.0000\",\n            \"allowance_minute\": 0,\n            \"carry_over_day\": \".0000\",\n            \"carry_over_minute\": 0,\n            \"credit_day\": \".0000\",\n            \"credit_minute\": 0,\n            \"total_entitlement_day\": \"28.0000\",\n            \"total_entitlement_minute\": 0,\n            \"worked_day\": \".0000\",\n            \"worked_minute\": 0,\n            \"taken_day\": \".0000\",\n            \"taken_minute\": 0,\n            \"planned_day\": \".0000\",\n            \"planned_minute\": 0,\n            \"unallocated_day\": \"28.0000\",\n            \"unallocated_minute\": 0\n        }\n    ]\n}"}],"_postman_id":"95209c42-fbf9-438e-9967-ae6c6b3c2547"}],"id":"ec1c632b-7ce6-4f44-9502-fe0f7b557520","_postman_id":"ec1c632b-7ce6-4f44-9502-fe0f7b557520","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Absence","item":[{"name":"Get Employee Absence","id":"83df81f4-21a0-430d-a238-d584961c3e2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absences/554","description":"<p>Gets a single absence for an employee from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-absences","554"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"2d2d2556-a57e-4433-965e-1808ea3f222c","name":"Get Employee Absence","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absences/554"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:24:13 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"1103"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"absence_id\": 554,\n            \"interrelated_guid\": \"{7FFA7BBD-CC5F-4AA3-B096-D7317C62D23A}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 37,\n            \"absence_from\": \"2025-07-07 00:00:00.000\",\n            \"absence_to\": \"2025-07-08 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 25,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20250707,1,1.00\\r20250708,1,1.00\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2025-07-07 00:00:00.000\",\n            \"interrelated_absence_to\": \"2025-07-08 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20250707,1,1.00\\r20250708,1,1.00\",\n            \"created\": \"2025-05-14 16:40:03.000\",\n            \"last_modified\": \"2025-05-14 16:40:03.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        }\n    ]\n}"}],"_postman_id":"83df81f4-21a0-430d-a238-d584961c3e2e"},{"name":"Get Employee Absences","id":"3a054581-8e3d-48a3-8c3c-728c08ad98ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absences","description":"<p>Gets a list of absences booked for employees.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-absences"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"2da6efe8-27c0-4118-a209-60d702c79965","name":"Get Employee Absences","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absences"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:21:19 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"114151"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"set-cookie","value":"ci_session=upuvuu017m7bm603q7o2g773f559b348; expires=Tue, 02 Jun 2026 13:16:54 GMT; Max-Age=86400; path=/; secure; HttpOnly; SameSite=Lax"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"absence_id\": 1,\n            \"interrelated_guid\": \"{D201C9A2-F848-4F56-92B4-1A3BD342B4BD}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 1,\n            \"absence_from\": \"2023-04-04 00:00:00.000\",\n            \"absence_to\": \"2023-04-07 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": -1,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20230404,9,1.00\\r20230405,9,1.00\\r20230406,9,1.00\\r20230407,9,1.00\",\n            \"entitlement_day\": \"4.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2023-04-04 00:00:00.000\",\n            \"interrelated_absence_to\": \"2023-04-07 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20230404,9,1.00\\r20230405,9,1.00\\r20230406,9,1.00\\r20230407,9,1.00\",\n            \"created\": \"2023-04-12 08:23:58.000\",\n            \"last_modified\": \"2023-04-12 08:23:58.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 2,\n            \"interrelated_guid\": \"{6C40B458-FAB6-4E4E-AF27-E29C487A8A4D}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-07-11 00:00:00.000\",\n            \"absence_to\": \"2024-07-11 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240711,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-11 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-11 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240711,4,1.00\",\n            \"created\": \"2024-07-10 16:31:51.000\",\n            \"last_modified\": \"2024-07-10 16:31:51.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 3,\n            \"interrelated_guid\": \"{B8094FF0-B2F9-4AEA-BE26-76CF0CE945A4}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-01-09 00:00:00.000\",\n            \"absence_to\": \"2024-01-12 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 21,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240109,4,1.00\\r20240110,4,1.00\\r20240111,4,1.00\\r20240112,4,1.00\",\n            \"entitlement_day\": \"4.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-01-09 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-01-12 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240109,4,1.00\\r20240110,4,1.00\\r20240111,4,1.00\\r20240112,4,1.00\",\n            \"created\": \"2024-07-11 10:12:38.000\",\n            \"last_modified\": \"2024-07-11 10:12:38.000\",\n            \"called\": \"2024-01-09 06:00:00.000\",\n            \"caller\": \"Archie Butler\",\n            \"rtwi_conducted\": 1,\n            \"rtwi_conducted_on\": \"2024-01-15 13:00:00.000\",\n            \"rtwi_user_id\": 20,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 5,\n            \"interrelated_guid\": \"{AD20FEFD-B581-49AD-91FF-B7259C6B44AD}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-02-05 00:00:00.000\",\n            \"absence_to\": \"2024-02-07 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 21,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240205,4,1.00\\r20240206,4,1.00\\r20240207,4,1.00\",\n            \"entitlement_day\": \"3.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 14,\n            \"description\": \"Training Off Site\",\n            \"category\": 5,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 3445231,\n            \"interrelated_absence_from\": \"2024-02-05 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-02-07 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240205,4,1.00\\r20240206,4,1.00\\r20240207,4,1.00\",\n            \"created\": \"2024-07-11 10:17:16.000\",\n            \"last_modified\": \"2024-07-11 10:17:16.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 6,\n            \"interrelated_guid\": \"{7A2897BE-7467-464C-96C1-AC8B8D59EF68}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 7,\n            \"interrelated_guid\": \"{7A2897BE-7467-464C-96C1-AC8B8D59EF68}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 8,\n            \"interrelated_guid\": \"{10B1FA7B-FF4E-46AD-A343-113B82E7AA3A}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 6,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 9,\n            \"interrelated_guid\": \"{10B1FA7B-FF4E-46AD-A343-113B82E7AA3A}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 6,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 10,\n            \"interrelated_guid\": \"{2F6543DF-2BA4-4D0E-9ADB-B59EB2412795}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 7,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 11,\n            \"interrelated_guid\": \"{2F6543DF-2BA4-4D0E-9ADB-B59EB2412795}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 7,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 12,\n            \"interrelated_guid\": \"{269B935E-18F0-4B5E-B598-809AB0572BC6}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 8,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 13,\n            \"interrelated_guid\": \"{269B935E-18F0-4B5E-B598-809AB0572BC6}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 8,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 14,\n            \"interrelated_guid\": \"{22A31F02-42F5-4C8C-AAB5-838E525CFC8D}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 9,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 15,\n            \"interrelated_guid\": \"{22A31F02-42F5-4C8C-AAB5-838E525CFC8D}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 9,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 16,\n            \"interrelated_guid\": \"{A0416B4A-E8EF-4862-939C-A61C285BC247}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 17,\n            \"interrelated_guid\": \"{A0416B4A-E8EF-4862-939C-A61C285BC247}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 18,\n            \"interrelated_guid\": \"{B093A0CC-25A0-45CB-9663-0D328318BCFA}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 11,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 19,\n            \"interrelated_guid\": \"{B093A0CC-25A0-45CB-9663-0D328318BCFA}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 11,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 20,\n            \"interrelated_guid\": \"{4BB15ED6-98D5-4C78-9EBC-89CE03C88976}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 12,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 21,\n            \"interrelated_guid\": \"{4BB15ED6-98D5-4C78-9EBC-89CE03C88976}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 12,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 22,\n            \"interrelated_guid\": \"{CD30311E-515F-4772-B8F0-0C9C5CA730B3}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 13,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 23,\n            \"interrelated_guid\": \"{CD30311E-515F-4772-B8F0-0C9C5CA730B3}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 13,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 24,\n            \"interrelated_guid\": \"{C315491A-C883-467D-9911-0B5C8BED4B50}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 25,\n            \"interrelated_guid\": \"{C315491A-C883-467D-9911-0B5C8BED4B50}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 26,\n            \"interrelated_guid\": \"{63077285-4B65-407D-AD20-0503DF7D27A7}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 15,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 27,\n            \"interrelated_guid\": \"{63077285-4B65-407D-AD20-0503DF7D27A7}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 15,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:40.000\",\n            \"last_modified\": \"2024-07-15 16:41:40.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 28,\n            \"interrelated_guid\": \"{4E5940F4-A303-47DC-A6CE-6190AA94140B}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 16,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 29,\n            \"interrelated_guid\": \"{4E5940F4-A303-47DC-A6CE-6190AA94140B}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 16,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 30,\n            \"interrelated_guid\": \"{65DC6A3E-5ABA-45F6-B9D9-FF87D475DB29}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 17,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 31,\n            \"interrelated_guid\": \"{65DC6A3E-5ABA-45F6-B9D9-FF87D475DB29}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 17,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 32,\n            \"interrelated_guid\": \"{5AE073AD-6132-4EBB-A730-A77B8653B0EB}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 18,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 33,\n            \"interrelated_guid\": \"{5AE073AD-6132-4EBB-A730-A77B8653B0EB}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 18,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 34,\n            \"interrelated_guid\": \"{92DD9A2E-F5D2-4AC9-B430-7ACECCEA5189}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 19,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 35,\n            \"interrelated_guid\": \"{92DD9A2E-F5D2-4AC9-B430-7ACECCEA5189}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 19,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 36,\n            \"interrelated_guid\": \"{E9887562-EB98-4162-A900-3353E5B1208E}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 20,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 37,\n            \"interrelated_guid\": \"{E9887562-EB98-4162-A900-3353E5B1208E}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 20,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 38,\n            \"interrelated_guid\": \"{C9D95B67-2D4A-487C-947F-F75EE981C26E}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 21,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 39,\n            \"interrelated_guid\": \"{C9D95B67-2D4A-487C-947F-F75EE981C26E}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 21,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 40,\n            \"interrelated_guid\": \"{6E2400EB-DD79-4F87-B512-382DE54FB248}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 22,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 41,\n            \"interrelated_guid\": \"{6E2400EB-DD79-4F87-B512-382DE54FB248}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 22,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 42,\n            \"interrelated_guid\": \"{9CCC6052-1E50-491B-9EA3-12A843150753}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 1,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,9,1.0000\\r20241224,9,1.0000\\r20241225,9,1.0000\\r20241226,9,1.0000\\r20241227,9,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,9,1.0000\\r20241224,9,1.0000\\r20241225,9,1.0000\\r20241226,9,1.0000\\r20241227,9,1.0000\\r20241230,9,1.0000\\r20241231,9,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 43,\n            \"interrelated_guid\": \"{9CCC6052-1E50-491B-9EA3-12A843150753}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 1,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,9,1.0000\\r20241231,9,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,9,1.0000\\r20241224,9,1.0000\\r20241225,9,1.0000\\r20241226,9,1.0000\\r20241227,9,1.0000\\r20241230,9,1.0000\\r20241231,9,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 44,\n            \"interrelated_guid\": \"{FA65BDDD-0915-4230-BE2F-ED9127034C1A}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 2,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 45,\n            \"interrelated_guid\": \"{FA65BDDD-0915-4230-BE2F-ED9127034C1A}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 2,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,4,1.0000\\r20241224,4,1.0000\\r20241225,4,1.0000\\r20241226,4,1.0000\\r20241227,4,1.0000\\r20241230,4,1.0000\\r20241231,4,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 46,\n            \"interrelated_guid\": \"{64851B33-52D8-4A02-BD9C-50B2E1A2ABEC}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 3,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,1,1.0000\\r20241224,1,1.0000\\r20241225,1,1.0000\\r20241226,1,1.0000\\r20241227,1,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,1,1.0000\\r20241224,1,1.0000\\r20241225,1,1.0000\\r20241226,1,1.0000\\r20241227,1,1.0000\\r20241230,1,1.0000\\r20241231,1,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 47,\n            \"interrelated_guid\": \"{64851B33-52D8-4A02-BD9C-50B2E1A2ABEC}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 3,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,1,1.0000\\r20241231,1,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,1,1.0000\\r20241224,1,1.0000\\r20241225,1,1.0000\\r20241226,1,1.0000\\r20241227,1,1.0000\\r20241230,1,1.0000\\r20241231,1,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 48,\n            \"interrelated_guid\": \"{FBF212C0-1388-4F0A-A74C-2B94A549ECC3}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 4,\n            \"absence_from\": \"2024-12-23 00:00:00.000\",\n            \"absence_to\": \"2024-12-27 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241223,9,1.0000\\r20241224,9,1.0000\\r20241225,9,1.0000\\r20241226,9,1.0000\\r20241227,9,1.0000\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,9,1.0000\\r20241224,9,1.0000\\r20241225,9,1.0000\\r20241226,9,1.0000\\r20241227,9,1.0000\\r20241230,9,1.0000\\r20241231,9,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 49,\n            \"interrelated_guid\": \"{FBF212C0-1388-4F0A-A74C-2B94A549ECC3}\",\n            \"absence_block_id\": 3,\n            \"employee_id\": 4,\n            \"absence_from\": \"2024-12-30 00:00:00.000\",\n            \"absence_to\": \"2024-12-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20241230,9,1.0000\\r20241231,9,1.0000\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 27,\n            \"description\": \"Company Shutdown Day\",\n            \"category\": 4,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16711896,\n            \"interrelated_absence_from\": \"2024-12-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-12-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20241223,9,1.0000\\r20241224,9,1.0000\\r20241225,9,1.0000\\r20241226,9,1.0000\\r20241227,9,1.0000\\r20241230,9,1.0000\\r20241231,9,1.0000\",\n            \"created\": \"2024-07-15 16:41:41.000\",\n            \"last_modified\": \"2024-07-15 16:41:41.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 52,\n            \"interrelated_guid\": \"{74A2CC21-F3D7-4091-A173-B1872E2D650A}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-07-22 00:00:00.000\",\n            \"absence_to\": \"2024-07-22 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 20,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240722,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-22 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-22 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240722,4,1.00\",\n            \"created\": \"2024-07-23 11:51:39.000\",\n            \"last_modified\": \"2024-07-23 11:51:39.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 53,\n            \"interrelated_guid\": \"{C58F9842-F657-4576-A899-DA282B0B5DA7}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 16,\n            \"absence_from\": \"2024-07-22 00:00:00.000\",\n            \"absence_to\": \"2024-07-22 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240722,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-22 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-22 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240722,4,1.00\",\n            \"created\": \"2024-07-23 11:58:23.000\",\n            \"last_modified\": \"2024-07-23 11:58:23.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 54,\n            \"interrelated_guid\": \"{3C190113-5FD9-4740-92DE-318B6554154B}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 16,\n            \"absence_from\": \"2024-07-23 00:00:00.000\",\n            \"absence_to\": \"2024-07-23 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240723,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-23 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240723,4,1.00\",\n            \"created\": \"2024-07-23 11:58:54.000\",\n            \"last_modified\": \"2024-07-23 11:58:54.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 56,\n            \"interrelated_guid\": \"{05C5CDF2-4282-47EB-A6E7-21DF7F55FD71}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 7,\n            \"absence_from\": \"2024-07-23 00:00:00.000\",\n            \"absence_to\": \"2024-07-23 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 20,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240723,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-23 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240723,4,1.00\",\n            \"created\": \"2024-07-23 12:12:08.000\",\n            \"last_modified\": \"2024-07-23 12:12:09.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 57,\n            \"interrelated_guid\": \"{F8FBB015-0300-401A-9A79-39B6246A5F83}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 16,\n            \"absence_from\": \"2024-07-24 00:00:00.000\",\n            \"absence_to\": \"2024-07-24 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240724,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-24 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-24 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240724,4,1.00\",\n            \"created\": \"2024-07-24 10:04:48.000\",\n            \"last_modified\": \"2024-07-24 10:04:48.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 58,\n            \"interrelated_guid\": \"{50D33BCD-69E1-4C49-9724-ADD8051D6C1D}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-07-24 00:00:00.000\",\n            \"absence_to\": \"2024-07-24 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240724,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-24 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-24 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240724,4,1.00\",\n            \"created\": \"2024-07-24 10:22:39.000\",\n            \"last_modified\": \"2024-07-24 10:22:39.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 59,\n            \"interrelated_guid\": \"{2411AA62-5635-4E17-9CFC-45F70E5F405B}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-07-25 00:00:00.000\",\n            \"absence_to\": \"2024-07-25 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240725,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240725,4,1.00\",\n            \"created\": \"2024-07-24 10:27:08.000\",\n            \"last_modified\": \"2024-07-24 10:27:08.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 60,\n            \"interrelated_guid\": \"{DB5213B5-FA18-4467-8ACF-E35A778E7433}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-07-26 00:00:00.000\",\n            \"absence_to\": \"2024-07-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240726,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240726,4,1.00\",\n            \"created\": \"2024-07-24 10:36:28.000\",\n            \"last_modified\": \"2024-07-24 10:36:28.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 61,\n            \"interrelated_guid\": \"{4DEF4C5F-6843-48B9-91A1-1226532015CB}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-07-29 00:00:00.000\",\n            \"absence_to\": \"2024-07-29 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240729,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-29 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-29 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240729,4,1.00\",\n            \"created\": \"2024-07-24 10:36:45.000\",\n            \"last_modified\": \"2024-07-24 10:36:45.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 66,\n            \"interrelated_guid\": \"{BE8D6574-B8EA-4EEC-B126-732ADF6FD99F}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-07-12 00:00:00.000\",\n            \"absence_to\": \"2024-07-12 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240712,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-12 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-12 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240712,4,1.00\",\n            \"created\": \"2024-07-24 14:44:39.000\",\n            \"last_modified\": \"2024-07-24 14:44:39.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 67,\n            \"interrelated_guid\": \"{2D2E2F72-31F9-4008-B29A-92FD80BEFCC6}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-07-16 00:00:00.000\",\n            \"absence_to\": \"2024-07-16 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240716,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 14,\n            \"description\": \"Training Off Site\",\n            \"category\": 5,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 3445231,\n            \"interrelated_absence_from\": \"2024-07-16 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-16 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240716,4,1.00\",\n            \"created\": \"2024-07-24 14:51:26.000\",\n            \"last_modified\": \"2024-07-24 14:51:26.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 68,\n            \"interrelated_guid\": \"{6499DE5C-873F-4E4F-90ED-FA70D96FBA9C}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-07-17 00:00:00.000\",\n            \"absence_to\": \"2024-07-17 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240717,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 14,\n            \"description\": \"Training Off Site\",\n            \"category\": 5,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 3445231,\n            \"interrelated_absence_from\": \"2024-07-17 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-17 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240717,4,1.00\",\n            \"created\": \"2024-07-24 14:52:14.000\",\n            \"last_modified\": \"2024-07-24 14:52:14.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 69,\n            \"interrelated_guid\": \"{FB546C23-4C9D-46B0-82DA-99F872DB94FD}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-07-19 00:00:00.000\",\n            \"absence_to\": \"2024-07-19 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 03:30:00.000\",\n            \"entitlement_breakdown\": \"20240719,4,0.50\",\n            \"entitlement_day\": \".5000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 2,\n            \"description\": \"Holiday Paid Half Day\",\n            \"category\": 0,\n            \"deduct_value\": \".5000\",\n            \"colour\": 16758637,\n            \"interrelated_absence_from\": \"2024-07-19 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-19 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240719,4,0.50\",\n            \"created\": \"2024-07-24 14:54:53.000\",\n            \"last_modified\": \"2024-07-24 14:54:53.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 70,\n            \"interrelated_guid\": \"{26345804-EE2D-4FEC-9C6F-27BCDDD19572}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-07-17 00:00:00.000\",\n            \"absence_to\": \"2024-07-17 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240717,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-17 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-17 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240717,4,1.00\",\n            \"created\": \"2024-07-24 16:43:35.000\",\n            \"last_modified\": \"2024-07-24 16:43:35.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 71,\n            \"interrelated_guid\": \"{C8CE537E-4104-42DA-B1D1-3E995C96177E}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-07-18 00:00:00.000\",\n            \"absence_to\": \"2024-07-18 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240718,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-18 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-18 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240718,4,1.00\",\n            \"created\": \"2024-07-24 16:44:04.000\",\n            \"last_modified\": \"2024-07-24 16:44:04.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 72,\n            \"interrelated_guid\": \"{9B60F65B-41AD-4A7A-AADE-257EDE9B235D}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-07-19 00:00:00.000\",\n            \"absence_to\": \"2024-07-19 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240719,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-19 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-19 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240719,4,1.00\",\n            \"created\": \"2024-07-24 16:44:36.000\",\n            \"last_modified\": \"2024-07-24 16:44:36.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 78,\n            \"interrelated_guid\": \"{6C90C46D-D53F-440B-A9F0-39AC40E96178}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 21,\n            \"absence_from\": \"2024-07-15 00:00:00.000\",\n            \"absence_to\": \"2024-07-15 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240715,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240715,4,1.00\",\n            \"created\": \"2024-07-24 17:10:28.000\",\n            \"last_modified\": \"2024-07-24 17:10:28.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 79,\n            \"interrelated_guid\": \"{650D38C8-804D-481B-975C-996777CAA09F}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 16,\n            \"absence_from\": \"2024-07-25 00:00:00.000\",\n            \"absence_to\": \"2024-07-25 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240725,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240725,4,1.00\",\n            \"created\": \"2024-07-25 10:16:54.000\",\n            \"last_modified\": \"2024-07-25 10:16:54.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 81,\n            \"interrelated_guid\": \"{4CAE7A58-D302-4D32-8B53-4161A5198DB9}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 21,\n            \"absence_from\": \"2024-07-16 00:00:00.000\",\n            \"absence_to\": \"2024-07-19 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 9,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240716,4,1.00\\r20240717,4,1.00\\r20240718,4,1.00\\r20240719,4,1.00\",\n            \"entitlement_day\": \"4.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-07-16 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-19 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240716,4,1.00\\r20240717,4,1.00\\r20240718,4,1.00\\r20240719,4,1.00\",\n            \"created\": \"2024-07-23 10:59:17.000\",\n            \"last_modified\": \"2024-07-25 10:34:47.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 1,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 82,\n            \"interrelated_guid\": \"{6F2B4C44-E66F-472F-A838-DD8297729F9B}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 8,\n            \"absence_from\": \"2024-06-04 00:00:00.000\",\n            \"absence_to\": \"2024-06-04 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 9,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240604,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-06-04 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-06-04 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240604,4,1.00\",\n            \"created\": \"2024-07-24 12:55:16.000\",\n            \"last_modified\": \"2024-07-25 10:35:00.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 1,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 83,\n            \"interrelated_guid\": \"{25DE6D6D-D539-4BE3-BC74-4CB628BE3EAF}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 19,\n            \"absence_from\": \"2024-07-12 00:00:00.000\",\n            \"absence_to\": \"2024-07-12 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240712,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-07-12 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-12 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240712,4,1.00\",\n            \"created\": \"2024-07-23 10:20:45.000\",\n            \"last_modified\": \"2024-07-25 10:35:11.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 1,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 86,\n            \"interrelated_guid\": \"{9DB46253-84B7-454E-A4E7-2039A82DBF00}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 7,\n            \"absence_from\": \"2024-07-25 00:00:00.000\",\n            \"absence_to\": \"2024-07-25 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 20,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240725,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240725,4,1.00\",\n            \"created\": \"2024-07-25 13:42:10.000\",\n            \"last_modified\": \"2024-07-25 13:42:10.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 88,\n            \"interrelated_guid\": \"{13EFBCEC-AA58-473C-8E02-0F5558C4A851}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 6,\n            \"absence_from\": \"2024-07-22 00:00:00.000\",\n            \"absence_to\": \"2024-07-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240722,4,1.00\\r20240723,4,1.00\\r20240724,4,1.00\\r20240725,4,1.00\\r20240726,4,1.00\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-22 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240722,4,1.00\\r20240723,4,1.00\\r20240724,4,1.00\\r20240725,4,1.00\\r20240726,4,1.00\",\n            \"created\": \"2024-07-26 09:31:08.000\",\n            \"last_modified\": \"2024-07-26 09:32:29.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 89,\n            \"interrelated_guid\": \"{24018947-83DC-44A3-A2CB-F69FC3022A1F}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 6,\n            \"absence_from\": \"2024-07-15 00:00:00.000\",\n            \"absence_to\": \"2024-07-19 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240715,4,1.00\\r20240716,4,1.00\\r20240717,4,1.00\\r20240718,4,1.00\\r20240719,4,1.00\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-19 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240715,4,1.00\\r20240716,4,1.00\\r20240717,4,1.00\\r20240718,4,1.00\\r20240719,4,1.00\",\n            \"created\": \"2024-07-26 09:32:44.000\",\n            \"last_modified\": \"2024-07-26 09:32:44.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 90,\n            \"interrelated_guid\": \"{6D0D1AD2-7AA9-4D41-BEC2-856F890FAB57}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 22,\n            \"absence_from\": \"2024-07-15 00:00:00.000\",\n            \"absence_to\": \"2024-07-19 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240715,4,0.00\\r20240716,4,0.00\\r20240717,4,0.00\\r20240718,4,0.00\\r20240719,4,0.00\",\n            \"entitlement_day\": \".0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 18,\n            \"description\": \"Authorised Absence\",\n            \"category\": 7,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 12167423,\n            \"interrelated_absence_from\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240715,4,0.00\\r20240716,4,0.00\\r20240717,4,0.00\\r20240718,4,0.00\\r20240719,4,0.00\\r20240722,4,0.00\\r20240723,4,0.00\\r20240724,4,0.00\\r20240725,4,0.00\\r20240726,4,0.00\\r20240729,4,0.00\\r20240730,4,0.00\\r20240731,4,0.00\",\n            \"created\": \"2024-07-26 09:40:35.000\",\n            \"last_modified\": \"2024-07-26 09:40:35.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 91,\n            \"interrelated_guid\": \"{6D0D1AD2-7AA9-4D41-BEC2-856F890FAB57}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 22,\n            \"absence_from\": \"2024-07-22 00:00:00.000\",\n            \"absence_to\": \"2024-07-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240722,4,0.00\\r20240723,4,0.00\\r20240724,4,0.00\\r20240725,4,0.00\\r20240726,4,0.00\",\n            \"entitlement_day\": \".0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 18,\n            \"description\": \"Authorised Absence\",\n            \"category\": 7,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 12167423,\n            \"interrelated_absence_from\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240715,4,0.00\\r20240716,4,0.00\\r20240717,4,0.00\\r20240718,4,0.00\\r20240719,4,0.00\\r20240722,4,0.00\\r20240723,4,0.00\\r20240724,4,0.00\\r20240725,4,0.00\\r20240726,4,0.00\\r20240729,4,0.00\\r20240730,4,0.00\\r20240731,4,0.00\",\n            \"created\": \"2024-07-26 09:40:35.000\",\n            \"last_modified\": \"2024-07-26 09:40:35.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 92,\n            \"interrelated_guid\": \"{6D0D1AD2-7AA9-4D41-BEC2-856F890FAB57}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 22,\n            \"absence_from\": \"2024-07-29 00:00:00.000\",\n            \"absence_to\": \"2024-07-31 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240729,4,0.00\\r20240730,4,0.00\\r20240731,4,0.00\",\n            \"entitlement_day\": \".0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 18,\n            \"description\": \"Authorised Absence\",\n            \"category\": 7,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 12167423,\n            \"interrelated_absence_from\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-31 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240715,4,0.00\\r20240716,4,0.00\\r20240717,4,0.00\\r20240718,4,0.00\\r20240719,4,0.00\\r20240722,4,0.00\\r20240723,4,0.00\\r20240724,4,0.00\\r20240725,4,0.00\\r20240726,4,0.00\\r20240729,4,0.00\\r20240730,4,0.00\\r20240731,4,0.00\",\n            \"created\": \"2024-07-26 09:40:35.000\",\n            \"last_modified\": \"2024-07-26 09:40:35.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 93,\n            \"interrelated_guid\": \"{F03763A6-44D1-4EB4-9D1E-2E0435F1A311}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 11,\n            \"absence_from\": \"2024-07-25 00:00:00.000\",\n            \"absence_to\": \"2024-07-25 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 9,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240725,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-25 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240725,4,1.00\",\n            \"created\": \"2024-07-25 10:17:46.000\",\n            \"last_modified\": \"2024-07-26 09:43:33.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 94,\n            \"interrelated_guid\": \"{6922C0A5-7E27-4E6C-AAC3-55131F6FFB6D}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 11,\n            \"absence_from\": \"2024-07-24 00:00:00.000\",\n            \"absence_to\": \"2024-07-24 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 9,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240724,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-07-24 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-24 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240724,4,1.00\",\n            \"created\": \"2024-07-24 12:13:42.000\",\n            \"last_modified\": \"2024-07-26 09:43:38.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 95,\n            \"interrelated_guid\": \"{C8441A14-2248-42B8-9C28-1385175F2D7A}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 11,\n            \"absence_from\": \"2024-07-23 00:00:00.000\",\n            \"absence_to\": \"2024-07-23 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 9,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240723,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-07-23 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-23 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240723,4,1.00\",\n            \"created\": \"2024-07-24 12:13:25.000\",\n            \"last_modified\": \"2024-07-26 09:43:48.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 96,\n            \"interrelated_guid\": \"{D9D83CED-E6B6-435D-8BA3-189B77D0D793}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 11,\n            \"absence_from\": \"2024-07-22 00:00:00.000\",\n            \"absence_to\": \"2024-07-22 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 9,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240722,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 19,\n            \"description\": \"Sickness Paid (Full Day)\",\n            \"category\": 1,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 9889972,\n            \"interrelated_absence_from\": \"2024-07-22 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-22 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240722,4,1.00\",\n            \"created\": \"2024-07-24 12:12:56.000\",\n            \"last_modified\": \"2024-07-26 09:43:53.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 100,\n            \"interrelated_guid\": \"{573167AE-1E1B-4CFE-8622-307C3FACB1B0}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-07-29 00:00:00.000\",\n            \"absence_to\": \"2024-08-02 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 1,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240729,4,1.00\\r20240730,4,1.00\\r20240731,4,1.00\\r20240801,4,1.00\\r20240802,4,1.00\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 13,\n            \"description\": \"Training On Site\",\n            \"category\": 5,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 7845620,\n            \"interrelated_absence_from\": \"2024-07-29 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-02 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240729,4,1.00\\r20240730,4,1.00\\r20240731,4,1.00\\r20240801,4,1.00\\r20240802,4,1.00\",\n            \"created\": \"2024-07-26 10:01:05.000\",\n            \"last_modified\": \"2024-07-26 10:01:05.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 104,\n            \"interrelated_guid\": \"{E95438BA-CCC4-42A6-9B63-690AE590CE17}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 17,\n            \"absence_from\": \"2024-07-26 00:00:00.000\",\n            \"absence_to\": \"2024-07-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240726,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240726,4,1.00\",\n            \"created\": \"2024-07-26 10:17:12.000\",\n            \"last_modified\": \"2024-07-26 10:17:19.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 107,\n            \"interrelated_guid\": \"{CBB6EF9A-8E16-4735-B6B0-2B67BCECA296}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 7,\n            \"absence_from\": \"2024-07-26 00:00:00.000\",\n            \"absence_to\": \"2024-07-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 20,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240726,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240726,4,1.00\",\n            \"created\": \"2024-07-26 16:05:11.000\",\n            \"last_modified\": \"2024-07-26 16:05:11.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 108,\n            \"interrelated_guid\": \"{4FC489BF-7E07-4878-8ED9-71EED5478C03}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 13,\n            \"absence_from\": \"2024-07-29 00:00:00.000\",\n            \"absence_to\": \"2024-07-29 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240729,4,0.00\",\n            \"entitlement_day\": \".0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 6,\n            \"description\": \"Holiday Unpaid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \".0000\",\n            \"colour\": 16758467,\n            \"interrelated_absence_from\": \"2024-07-29 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-29 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240729,4,0.00\",\n            \"created\": \"2024-07-29 10:24:11.000\",\n            \"last_modified\": \"2024-07-29 10:24:11.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 109,\n            \"interrelated_guid\": \"{DD5511E0-D26C-4B05-B60F-62A5B366C4C7}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 16,\n            \"absence_from\": \"2024-07-26 00:00:00.000\",\n            \"absence_to\": \"2024-07-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240726,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240726,4,1.00\",\n            \"created\": \"2024-07-29 11:13:29.000\",\n            \"last_modified\": \"2024-07-29 11:13:29.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 110,\n            \"interrelated_guid\": \"{8C8C7C20-785B-40F1-9AAB-E09A85986914}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-07-30 00:00:00.000\",\n            \"absence_to\": \"2024-07-30 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240730,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-30 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-30 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240730,4,1.00\",\n            \"created\": \"2024-07-30 12:48:56.000\",\n            \"last_modified\": \"2024-07-30 12:48:56.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 112,\n            \"interrelated_guid\": \"{26F440FC-C92A-4DA9-8D7B-1E8CA1A83F5B}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-07-15 00:00:00.000\",\n            \"absence_to\": \"2024-07-15 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 2,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 9,\n            \"force_absence_duration\": \"1899-12-30 03:30:00.000\",\n            \"entitlement_breakdown\": \"20240715,4,0.50\",\n            \"entitlement_day\": \".5000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 24,\n            \"description\": \"Sickness Paid (Half Day)\",\n            \"category\": 1,\n            \"deduct_value\": \".5000\",\n            \"colour\": 3002730,\n            \"interrelated_absence_from\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-07-15 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240715,4,0.50\",\n            \"created\": \"2024-07-24 16:45:42.000\",\n            \"last_modified\": \"2024-07-30 16:00:22.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 114,\n            \"interrelated_guid\": \"{594FE051-443C-49CC-A8EC-EB1BCFCE518A}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 6,\n            \"absence_from\": \"2024-07-30 00:00:00.000\",\n            \"absence_to\": \"2024-08-02 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240730,4,1.00\\r20240731,4,1.00\\r20240801,4,1.00\\r20240802,4,1.00\",\n            \"entitlement_day\": \"4.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-30 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-06 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240730,4,1.00\\r20240731,4,1.00\\r20240801,4,1.00\\r20240802,4,1.00\\r20240805,4,1.00\\r20240806,4,1.00\",\n            \"created\": \"2024-07-31 09:09:47.000\",\n            \"last_modified\": \"2024-07-31 09:09:47.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 115,\n            \"interrelated_guid\": \"{594FE051-443C-49CC-A8EC-EB1BCFCE518A}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 6,\n            \"absence_from\": \"2024-08-05 00:00:00.000\",\n            \"absence_to\": \"2024-08-06 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240805,4,1.00\\r20240806,4,1.00\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-07-30 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-06 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240730,4,1.00\\r20240731,4,1.00\\r20240801,4,1.00\\r20240802,4,1.00\\r20240805,4,1.00\\r20240806,4,1.00\",\n            \"created\": \"2024-07-31 09:09:47.000\",\n            \"last_modified\": \"2024-07-31 09:09:47.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 116,\n            \"interrelated_guid\": \"{BB76AFEE-B08C-4D4C-A4AC-64F227FE5247}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 7,\n            \"absence_from\": \"2024-08-01 00:00:00.000\",\n            \"absence_to\": \"2024-08-02 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240801,4,1.00\\r20240802,4,1.00\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-08-01 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-02 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240801,4,1.00\\r20240802,4,1.00\",\n            \"created\": \"2024-07-31 09:14:27.000\",\n            \"last_modified\": \"2024-07-31 09:14:27.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 118,\n            \"interrelated_guid\": \"{142F6F66-091A-4EBD-812F-C94759024F95}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 17,\n            \"absence_from\": \"2024-08-02 00:00:00.000\",\n            \"absence_to\": \"2024-08-02 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240802,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-08-02 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-02 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240802,4,1.00\",\n            \"created\": \"2024-08-02 10:39:48.000\",\n            \"last_modified\": \"2024-08-02 10:39:48.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 119,\n            \"interrelated_guid\": \"{C61AADB1-0093-45D0-B249-89F4504D1C03}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-08-05 00:00:00.000\",\n            \"absence_to\": \"2024-08-09 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240805,4,1.00\\r20240806,4,1.00\\r20240807,4,1.00\\r20240808,4,1.00\\r20240809,4,1.00\",\n            \"entitlement_day\": \"5.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-08-05 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-12 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240805,4,1.00\\r20240806,4,1.00\\r20240807,4,1.00\\r20240808,4,1.00\\r20240809,4,1.00\\r20240812,4,1.00\",\n            \"created\": \"2024-07-26 09:50:46.000\",\n            \"last_modified\": \"2024-08-02 10:41:43.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 120,\n            \"interrelated_guid\": \"{C61AADB1-0093-45D0-B249-89F4504D1C03}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-08-12 00:00:00.000\",\n            \"absence_to\": \"2024-08-12 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240812,4,1.00\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-08-05 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-12 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240805,4,1.00\\r20240806,4,1.00\\r20240807,4,1.00\\r20240808,4,1.00\\r20240809,4,1.00\\r20240812,4,1.00\",\n            \"created\": \"2024-07-26 09:50:46.000\",\n            \"last_modified\": \"2024-08-02 10:41:43.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 121,\n            \"interrelated_guid\": \"{0E36DA25-F8DF-4881-BD9E-4F81CBDD503C}\",\n            \"absence_block_id\": 0,\n            \"employee_id\": 14,\n            \"absence_from\": \"2024-08-21 00:00:00.000\",\n            \"absence_to\": \"2024-08-22 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": \"\",\n            \"force_absence\": 0,\n            \"force_absence_timepot\": null,\n            \"force_absence_duration\": null,\n            \"entitlement_breakdown\": \"20240821,4,1.00\\r20240822,4,1.00\",\n            \"entitlement_day\": \"2.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 1,\n            \"description\": \"Holiday Paid Full Day\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16767926,\n            \"interrelated_absence_from\": \"2024-08-21 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-22 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240821,4,1.00\\r20240822,4,1.00\",\n            \"created\": \"2024-08-02 10:45:51.000\",\n            \"last_modified\": \"2024-08-02 10:45:51.000\",\n            \"called\": null,\n            \"caller\": \"\",\n            \"rtwi_conducted\": 0,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": 0,\n            \"rtwi_memo\": \"\",\n            \"cancellation_request\": 0\n        },\n        {\n            \"absence_id\": 122,\n            \"interrelated_guid\": \"{9E4802C6-2BE6-4A80-88FB-D854E8B52E19}\",\n            \"absence_block_id\": 4,\n            \"employee_id\": 5,\n            \"absence_from\": \"2024-08-26 00:00:00.000\",\n            \"absence_to\": \"2024-08-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"interrelated_absence_from\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"created\": \"2024-08-02 11:00:15.000\",\n            \"last_modified\": \"2024-08-02 11:00:15.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 123,\n            \"interrelated_guid\": \"{832213BA-3178-4722-80B1-4B23DCB6B1ED}\",\n            \"absence_block_id\": 4,\n            \"employee_id\": 6,\n            \"absence_from\": \"2024-08-26 00:00:00.000\",\n            \"absence_to\": \"2024-08-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"interrelated_absence_from\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"created\": \"2024-08-02 11:00:16.000\",\n            \"last_modified\": \"2024-08-02 11:00:16.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 124,\n            \"interrelated_guid\": \"{11049186-3793-41EC-94F9-28AC9E8F237F}\",\n            \"absence_block_id\": 4,\n            \"employee_id\": 7,\n            \"absence_from\": \"2024-08-26 00:00:00.000\",\n            \"absence_to\": \"2024-08-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"interrelated_absence_from\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"created\": \"2024-08-02 11:00:16.000\",\n            \"last_modified\": \"2024-08-02 11:00:16.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 125,\n            \"interrelated_guid\": \"{3A6DEE41-278D-4F7D-A401-7946F64E7209}\",\n            \"absence_block_id\": 4,\n            \"employee_id\": 8,\n            \"absence_from\": \"2024-08-26 00:00:00.000\",\n            \"absence_to\": \"2024-08-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"interrelated_absence_from\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"created\": \"2024-08-02 11:00:16.000\",\n            \"last_modified\": \"2024-08-02 11:00:16.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 126,\n            \"interrelated_guid\": \"{1626E59F-D37C-4055-B743-028D8F74DFD3}\",\n            \"absence_block_id\": 4,\n            \"employee_id\": 9,\n            \"absence_from\": \"2024-08-26 00:00:00.000\",\n            \"absence_to\": \"2024-08-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"interrelated_absence_from\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"created\": \"2024-08-02 11:00:17.000\",\n            \"last_modified\": \"2024-08-02 11:00:17.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 127,\n            \"interrelated_guid\": \"{1FB0BA9E-71C2-4FB2-9351-6426FB10F9B0}\",\n            \"absence_block_id\": 4,\n            \"employee_id\": 10,\n            \"absence_from\": \"2024-08-26 00:00:00.000\",\n            \"absence_to\": \"2024-08-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"interrelated_absence_from\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"created\": \"2024-08-02 11:00:17.000\",\n            \"last_modified\": \"2024-08-02 11:00:17.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        },\n        {\n            \"absence_id\": 128,\n            \"interrelated_guid\": \"{11FCA419-6263-42EE-B33B-51A307B868BD}\",\n            \"absence_block_id\": 4,\n            \"employee_id\": 11,\n            \"absence_from\": \"2024-08-26 00:00:00.000\",\n            \"absence_to\": \"2024-08-26 00:00:00.000\",\n            \"restrict_from\": null,\n            \"restrict_to\": null,\n            \"restrict_duration\": null,\n            \"authorisation\": 3,\n            \"authorisation_user_id\": 1,\n            \"authorisation_finalised\": 1,\n            \"memo\": \"\",\n            \"memo_public\": null,\n            \"force_absence\": 1,\n            \"force_absence_timepot\": 8,\n            \"force_absence_duration\": \"1899-12-30 08:00:00.000\",\n            \"entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"entitlement_day\": \"1.0000\",\n            \"entitlement_minute\": 0,\n            \"entitlement_format\": 0,\n            \"absence_ref_id\": 5,\n            \"description\": \"Bank Holiday\",\n            \"category\": 0,\n            \"deduct_value\": \"1.0000\",\n            \"colour\": 16760767,\n            \"interrelated_absence_from\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_absence_to\": \"2024-08-26 00:00:00.000\",\n            \"interrelated_entitlement_breakdown\": \"20240826,4,1.0000\",\n            \"created\": \"2024-08-02 11:00:17.000\",\n            \"last_modified\": \"2024-08-02 11:00:17.000\",\n            \"called\": null,\n            \"caller\": null,\n            \"rtwi_conducted\": null,\n            \"rtwi_conducted_on\": null,\n            \"rtwi_user_id\": null,\n            \"rtwi_memo\": null,\n            \"cancellation_request\": null\n        }\n    ]\n}"}],"_postman_id":"3a054581-8e3d-48a3-8c3c-728c08ad98ea"},{"name":"Add Employee Absence","id":"fc4f9c0b-776d-4fe2-b88c-b84779049d5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"interrelated_absence_from","value":"2021-01-01","type":"text"},{"key":"interrelated_absence_to","value":"2021-01-01","type":"text"},{"key":"absence_ref_id","value":"5","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"memo","value":"This is a note associated with the absence.","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absences","description":"<p>Adds a new approved and finalised absence of a specific reason spanning the provided dates for an employee into the system and recalculates the relevant dates. Please note that where the absence reason does not include rest days and it spans rest days, this endpoint may generate multiple absence records.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-absences"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc4f9c0b-776d-4fe2-b88c-b84779049d5a"},{"name":"Update Employee Absence","id":"94bbb366-9c10-481c-ab5e-db4ddd942cd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"interrelated_absence_from","value":"2021-01-02","type":"text"},{"key":"interrelated_absence_to","value":"2021-01-02","type":"text"},{"key":"absence_ref_id","value":"5","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absences/553","description":"<p>Update an existing absence for an employee in the system and recalculates the relevant dates.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-absences","553"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"94bbb366-9c10-481c-ab5e-db4ddd942cd7"},{"name":"Delete Employee Absence","id":"267e63bd-ee51-41bf-9ac5-e5b810177d7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-absences/554","description":"<p>Deletes a single accident for an employee record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-absences","554"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"267e63bd-ee51-41bf-9ac5-e5b810177d7e"}],"id":"53014bed-d90d-402e-9128-3417f3c36943","_postman_id":"53014bed-d90d-402e-9128-3417f3c36943","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Accident","item":[{"name":"Get Employee Accident","id":"963bdfd5-6875-47c7-bae1-d19ee07deed4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents/2","description":"<p>Gets a single title record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accidents","2"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"98526e1b-32bd-42f0-8b60-a435d04b7c23","name":"Get Employee Accident","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents/2"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:20:53 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"270"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2024-07-01 17:02:00.000\",\n            \"description\": \"\",\n            \"location\": \"London Site\",\n            \"persons_involved\": \"\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"\"\n        }\n    ]\n}"},{"id":"a2a5900d-2503-4501-85cc-81d45a0a1773","name":"Get Employee Accident","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents/2"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:21:40 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"270"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2024-07-01 17:02:00.000\",\n            \"description\": \"\",\n            \"location\": \"London Site\",\n            \"persons_involved\": \"\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"\"\n        }\n    ]\n}"}],"_postman_id":"963bdfd5-6875-47c7-bae1-d19ee07deed4"},{"name":"Get Employee Accidents","id":"84908c46-2199-40bd-9652-be9874b3f007","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents","description":"<p>Gets the list of accidents in which employees have been involved.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accidents"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"d6655153-ee38-4ac0-aa32-83c20b05fcd9","name":"Get Employee Accidents","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:20:13 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"3602"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-23 12:27:00.000\",\n            \"description\": \"\",\n            \"location\": \"Head Office\",\n            \"persons_involved\": \"\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2024-07-01 17:02:00.000\",\n            \"description\": \"\",\n            \"location\": \"London Site\",\n            \"persons_involved\": \"\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"\"\n        },\n        {\n            \"employee_id\": 37,\n            \"date_and_time\": \"2025-04-08 14:13:00.000\",\n            \"description\": \"David Freeman tripped over his bag.\",\n            \"location\": \"London Head Office \",\n            \"persons_involved\": \"David Freeman \",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"Taped up his head and took him to A&E.\",\n            \"authorisation\": 1,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"Bleeding to the head.\"\n        },\n        {\n            \"employee_id\": 40,\n            \"date_and_time\": \"2025-01-22 11:21:00.000\",\n            \"description\": \"John was running to open the door, he tripped over a chair and smashed his head open.\",\n            \"location\": \"Unit 3A Great Northern Works, Hartham Lane, Hertford, SG14 1QW\",\n            \"persons_involved\": \"John Smith\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"Was taken to A&E as he needed stitches.\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"Cut his head.\"\n        },\n        {\n            \"employee_id\": 37,\n            \"date_and_time\": \"2026-03-19 14:55:00.000\",\n            \"description\": \"Earlier today, an incident occurred in the warehouse involving David Freeman, resulting in minor injuries. The injuries were reported as superficial and did not require immediate medical attention. The incident has been recorded, and appropriate checks will be carried out to determine the circumstances and ensure all health and safety procedures are being followed.\",\n            \"location\": \"London Head Office\",\n            \"persons_involved\": \"One other employee was present at the time of the incident; however, they were not directly involved and did not sustain any injuries.  \\nHarry Franklin\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"First aid was provided on site, the incident was reported and recorded, and a review will be conducted to prevent recurrence\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"The injury sustained was a minor cut to the hand along with slight bruising, both of which were treated on site and did not require further medical attention.\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2025-11-20 16:38:00.000\",\n            \"description\": \"\",\n            \"location\": \"London Site\",\n            \"persons_involved\": \"\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-03-23 16:40:00.000\",\n            \"description\": \"\",\n            \"location\": \"London Site\",\n            \"persons_involved\": \"\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"\",\n            \"authorisation\": 1,\n            \"authorisation_finalised\": 0,\n            \"injury_suffered\": \"\"\n        },\n        {\n            \"employee_id\": 37,\n            \"date_and_time\": \"2026-03-23 10:15:00.000\",\n            \"description\": \"Cuts and Lacerations report \",\n            \"location\": \"London Head Office \",\n            \"persons_involved\": \"Employee Name: David Freeman\\nDate of Incident: 23/03/2026\\nTime of Incident: 10:15\",\n            \"persons_overseeing\": \"\",\n            \"action_taken\": \"The wound was immediately cleaned and dressed, and David was advised to monitor for any signs of infection. The incident was recorded, and a review of the task and equipment involved will be conducted to prevent recurrence.\",\n            \"authorisation\": 3,\n            \"authorisation_finalised\": 1,\n            \"injury_suffered\": \"While performing routine work duties, David Freeman sustained a cut to his left hand. The injury occurred when handling equipment and resulted in a laceration. Minor cut/laceration to the left hand requiring first aid treatment.\"\n        }\n    ]\n}"}],"_postman_id":"84908c46-2199-40bd-9652-be9874b3f007"},{"name":"Add Employee Accidents","id":"7eeb8708-77e9-4e8c-89a8-b4850d945214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents","description":"<p>Adds a new accident record for an employee into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accidents"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7eeb8708-77e9-4e8c-89a8-b4850d945214"},{"name":"Update Employee Accidents","id":"36223c2e-f21a-42a8-aff7-ea972e6fdd4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents/2","description":"<p>Update an existing accident for an employee in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accidents","2"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"36223c2e-f21a-42a8-aff7-ea972e6fdd4c"},{"name":"Delete Employee Accidents","id":"059486eb-36a8-4b9e-b5f0-4db963b867d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accident-reasons/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accident-reasons","3"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"059486eb-36a8-4b9e-b5f0-4db963b867d3"}],"id":"bc2b8276-4375-4355-9cb7-d0b4014f5d8a","_postman_id":"bc2b8276-4375-4355-9cb7-d0b4014f5d8a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Calendar","item":[{"name":"Get Employee Calendar","id":"b59fcfd0-d47f-4057-9a21-c7025e8a5e3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-calendar?from=2026-01-01&to=2026-02-01","description":"<p>This endpoint requires you to pass in [from] and [to] parameters (which can be in the future) and it will return the default schedule for the employee or employees (if the employee is also a user) along with any absences and roster shift detail. It also returns home groupings and dates of birth to allow a comprehensive calendar to be rendered. The context GET parameter can be specified as user if an employee who is also a user wishes to retrieve the calendar for employees under their remit. The from and to GET parameters should be provided as YYYY-MM-DD dates.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-calendar"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"from","value":"2026-01-01"},{"key":"to","value":"2026-02-01"}],"variable":[]}},"response":[],"_postman_id":"b59fcfd0-d47f-4057-9a21-c7025e8a5e3c"}],"id":"0c68105b-33da-42ec-9222-dc6b638bca7b","_postman_id":"0c68105b-33da-42ec-9222-dc6b638bca7b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Changes","item":[{"name":"Get Employee Changes","id":"77df6aaf-d5bb-4a7b-88d8-836ad8a7f6f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-changes","description":"<p>Get a list of employee changes in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-changes"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"7f5167bc-db50-4935-9216-84969428d5b9","name":"Get Employee Changes","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-changes"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:15:50 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": []\n}"}],"_postman_id":"77df6aaf-d5bb-4a7b-88d8-836ad8a7f6f5"},{"name":"Get Employee Change","id":"ad9f7a8e-54a1-42ef-bb24-e4b418426544","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-changes/10","description":"<p>Get a single employee change from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-changes","10"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"4cf0c666-5871-4c21-b893-6a9cde36cec9","name":"Get Employee Change","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-changes/10"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:15:44 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": []\n}"}],"_postman_id":"ad9f7a8e-54a1-42ef-bb24-e4b418426544"},{"name":"Add Employee Change","id":"6093c883-9d40-4a30-b11e-c342869a578a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"218","type":"text"},{"key":"field_name","value":"postcode","type":"text"},{"key":"original_value","value":"BT11AA","type":"text"},{"key":"new_value","value":"BT11AB","type":"text","uuid":"5a309c7d-2d61-4228-8191-b379548c7e02"},{"key":"change_request_date_and_time","value":"2025-09-07 09:20","type":"text","uuid":"cf205fd7-3ae9-4fcc-b2a7-c577c0b43b68"},{"key":"change_user_type","value":"user","type":"text","uuid":"0b53d60d-5046-493c-b591-66874a172315"},{"key":"change_user_id","value":"1","type":"text","uuid":"5d51e469-3058-49d2-84a3-a7cce6db01bd"},{"key":"authorisation","value":"1","type":"text","uuid":"09684410-972b-4117-a6ee-e1d2f6892f9c"},{"key":"authorisation_finalised","value":"0","type":"text","uuid":"707381ab-98dc-4e2e-a69a-e39a909b2544"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-changes","description":"<p>Adds a new employee change record to the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-changes"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"6093c883-9d40-4a30-b11e-c342869a578a"},{"name":"Update Employee Change","id":"a381765e-7165-4c8f-a326-4df7018fbed6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"new_value","value":"BT11AC","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-changes/3847","description":"<p>Updates an existing employee change in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-changes","3847"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"disabled":true,"key":"data","value":"42.50"}],"variable":[]}},"response":[],"_postman_id":"a381765e-7165-4c8f-a326-4df7018fbed6"},{"name":"Delete Employee Change","id":"e84bb32e-4f32-4919-a229-41d883ae4579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-changes/3847","description":"<p>Deletes an existing employee change from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-changes","3847"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e84bb32e-4f32-4919-a229-41d883ae4579"}],"id":"4842a885-b8e0-49d9-96e3-0a3706d178ae","_postman_id":"4842a885-b8e0-49d9-96e3-0a3706d178ae","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Employment","item":[{"name":"Get Employee Employments","id":"ebcbf00c-76e2-4b32-907e-302e749e2c92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-employment","description":"<p>Get a list of employee employment records in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-employment"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"ebcbf00c-76e2-4b32-907e-302e749e2c92"},{"name":"Get Employee Employment","id":"947a4600-aa64-4fbf-8f10-bf8ea59bad73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-employment/55","description":"<p>Get a single employee employment record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-employment","55"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"947a4600-aa64-4fbf-8f10-bf8ea59bad73"},{"name":"Add Employee Employment","id":"e0fcd80a-69ee-4444-b679-52de30b7dbeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"218","type":"text"},{"key":"employee_job_spec_ref_id","value":"1","type":"text"},{"key":"description","value":"New employment role","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-employment","description":"<p>Adds a new employee employment record to the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-employment"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0fcd80a-69ee-4444-b679-52de30b7dbeb"},{"name":"Update Employee Employment","id":"fe301341-93ba-48f5-b50c-9c3011c2858f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"new_value","value":"BT11AC","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-employment/55","description":"<p>Updates an existing employee employment record in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-employment","55"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"disabled":true,"key":"data","value":"42.50"}],"variable":[]}},"response":[],"_postman_id":"fe301341-93ba-48f5-b50c-9c3011c2858f"},{"name":"Delete Employee Employment","id":"c4603b6e-d16d-4933-aadd-37f6bd8ea38d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-employment/55","description":"<p>Deletes an existing employee employment record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-employment","55"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4603b6e-d16d-4933-aadd-37f6bd8ea38d"}],"id":"d964cd25-f692-41fc-9f8a-1e0d51582eec","_postman_id":"d964cd25-f692-41fc-9f8a-1e0d51582eec","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Form","item":[{"name":"Get Employee Form","id":"c2099519-caeb-4bc9-a2f0-3fbc578097f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-forms/14","description":"<p>Gets a list of absences booked for employees.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-forms","14"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2099519-caeb-4bc9-a2f0-3fbc578097f4"},{"name":"Get Employee Forms","id":"fc9c6d73-1ceb-4072-823f-a3873fbd7cfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-forms","description":"<p>Gets a list of absences booked for employees.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-forms"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc9c6d73-1ceb-4072-823f-a3873fbd7cfe"},{"name":"Add Employee Form","id":"db7870da-b3dd-40a4-b03b-f794af70921a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"form_id","value":"1","type":"text"},{"key":"employee_signature","value":"{image data}","type":"text"},{"key":"any_form_field","value":"any_form_data","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-forms","description":"<p>Adds a new form to a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-forms"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"db7870da-b3dd-40a4-b03b-f794af70921a"},{"name":"Update Employee Form","id":"c9ddae37-9d65-4ad1-b01b-82af1300fcba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"form_id","value":"1","type":"text"},{"key":"employee_signature","value":"{image data}","type":"text"},{"key":"any_form_field","value":"any_form_data","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-forms/14","description":"<p>Adds a new form to a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-forms","14"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9ddae37-9d65-4ad1-b01b-82af1300fcba"},{"name":"Delete Employee Form","id":"fd73048f-629d-48ab-a2ed-fe7c75172e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-forms/14","description":"<p>Deletes a single job form from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-forms","14"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd73048f-629d-48ab-a2ed-fe7c75172e7f"}],"id":"6dcdc410-e69a-4c28-a1ed-df976ba88a61","_postman_id":"6dcdc410-e69a-4c28-a1ed-df976ba88a61","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Pay Period","item":[{"name":"Get Employee Pay Periods","id":"19070b96-11c0-47b0-aac1-71c0031c80b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-pay-periods","description":"<p>Get a list of employee pay periods in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-pay-periods"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"62a0be69-d0f9-4d5a-86f0-ce78ad674bdc","name":"Get Employee Pay Periods","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-pay-periods"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:14:02 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"8236"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-06-01 00:00:00.000\",\n            \"to\": \"2026-06-07 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-05-25 00:00:00.000\",\n            \"to\": \"2026-05-31 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-05-18 00:00:00.000\",\n            \"to\": \"2026-05-24 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-05-11 00:00:00.000\",\n            \"to\": \"2026-05-17 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-05-04 00:00:00.000\",\n            \"to\": \"2026-05-10 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-04-27 00:00:00.000\",\n            \"to\": \"2026-05-03 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-04-20 00:00:00.000\",\n            \"to\": \"2026-04-26 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-04-13 00:00:00.000\",\n            \"to\": \"2026-04-19 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-04-06 00:00:00.000\",\n            \"to\": \"2026-04-12 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-03-30 00:00:00.000\",\n            \"to\": \"2026-04-05 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-03-23 00:00:00.000\",\n            \"to\": \"2026-03-29 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-03-16 00:00:00.000\",\n            \"to\": \"2026-03-22 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-03-09 00:00:00.000\",\n            \"to\": \"2026-03-15 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-03-02 00:00:00.000\",\n            \"to\": \"2026-03-08 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-02-23 00:00:00.000\",\n            \"to\": \"2026-03-01 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-02-16 00:00:00.000\",\n            \"to\": \"2026-02-22 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-02-09 00:00:00.000\",\n            \"to\": \"2026-02-15 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-02-02 00:00:00.000\",\n            \"to\": \"2026-02-08 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-01-26 00:00:00.000\",\n            \"to\": \"2026-02-01 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-01-19 00:00:00.000\",\n            \"to\": \"2026-01-25 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-01-12 00:00:00.000\",\n            \"to\": \"2026-01-18 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2026-01-05 00:00:00.000\",\n            \"to\": \"2026-01-11 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-12-29 00:00:00.000\",\n            \"to\": \"2026-01-04 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-12-22 00:00:00.000\",\n            \"to\": \"2025-12-28 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-12-15 00:00:00.000\",\n            \"to\": \"2025-12-21 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-12-08 00:00:00.000\",\n            \"to\": \"2025-12-14 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-12-01 00:00:00.000\",\n            \"to\": \"2025-12-07 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-11-24 00:00:00.000\",\n            \"to\": \"2025-11-30 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-11-17 00:00:00.000\",\n            \"to\": \"2025-11-23 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-11-10 00:00:00.000\",\n            \"to\": \"2025-11-16 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-11-03 00:00:00.000\",\n            \"to\": \"2025-11-09 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-10-27 00:00:00.000\",\n            \"to\": \"2025-11-02 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-10-20 00:00:00.000\",\n            \"to\": \"2025-10-26 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-10-13 00:00:00.000\",\n            \"to\": \"2025-10-19 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-10-06 00:00:00.000\",\n            \"to\": \"2025-10-12 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-09-29 00:00:00.000\",\n            \"to\": \"2025-10-05 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-09-22 00:00:00.000\",\n            \"to\": \"2025-09-28 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-09-15 00:00:00.000\",\n            \"to\": \"2025-09-21 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-09-08 00:00:00.000\",\n            \"to\": \"2025-09-14 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-09-01 00:00:00.000\",\n            \"to\": \"2025-09-07 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-08-25 00:00:00.000\",\n            \"to\": \"2025-08-31 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-08-18 00:00:00.000\",\n            \"to\": \"2025-08-24 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-08-11 00:00:00.000\",\n            \"to\": \"2025-08-17 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-08-04 00:00:00.000\",\n            \"to\": \"2025-08-10 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-07-28 00:00:00.000\",\n            \"to\": \"2025-08-03 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-07-21 00:00:00.000\",\n            \"to\": \"2025-07-27 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-07-14 00:00:00.000\",\n            \"to\": \"2025-07-20 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-07-07 00:00:00.000\",\n            \"to\": \"2025-07-13 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-06-30 00:00:00.000\",\n            \"to\": \"2025-07-06 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-06-23 00:00:00.000\",\n            \"to\": \"2025-06-29 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-06-16 00:00:00.000\",\n            \"to\": \"2025-06-22 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-06-09 00:00:00.000\",\n            \"to\": \"2025-06-15 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-06-02 00:00:00.000\",\n            \"to\": \"2025-06-08 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-05-26 00:00:00.000\",\n            \"to\": \"2025-06-01 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-05-19 00:00:00.000\",\n            \"to\": \"2025-05-25 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-05-12 00:00:00.000\",\n            \"to\": \"2025-05-18 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-05-05 00:00:00.000\",\n            \"to\": \"2025-05-11 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-04-28 00:00:00.000\",\n            \"to\": \"2025-05-04 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-04-21 00:00:00.000\",\n            \"to\": \"2025-04-27 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-04-14 00:00:00.000\",\n            \"to\": \"2025-04-20 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-04-07 00:00:00.000\",\n            \"to\": \"2025-04-13 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-03-31 00:00:00.000\",\n            \"to\": \"2025-04-06 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-03-24 00:00:00.000\",\n            \"to\": \"2025-03-30 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-03-17 00:00:00.000\",\n            \"to\": \"2025-03-23 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-03-10 00:00:00.000\",\n            \"to\": \"2025-03-16 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-03-03 00:00:00.000\",\n            \"to\": \"2025-03-09 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-02-24 00:00:00.000\",\n            \"to\": \"2025-03-02 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-02-17 00:00:00.000\",\n            \"to\": \"2025-02-23 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-02-10 00:00:00.000\",\n            \"to\": \"2025-02-16 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-02-03 00:00:00.000\",\n            \"to\": \"2025-02-09 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-01-27 00:00:00.000\",\n            \"to\": \"2025-02-02 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-01-20 00:00:00.000\",\n            \"to\": \"2025-01-26 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-01-13 00:00:00.000\",\n            \"to\": \"2025-01-19 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2025-01-06 00:00:00.000\",\n            \"to\": \"2025-01-12 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-12-30 00:00:00.000\",\n            \"to\": \"2025-01-05 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-12-23 00:00:00.000\",\n            \"to\": \"2024-12-29 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-12-16 00:00:00.000\",\n            \"to\": \"2024-12-22 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-12-09 00:00:00.000\",\n            \"to\": \"2024-12-15 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-12-02 00:00:00.000\",\n            \"to\": \"2024-12-08 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-11-25 00:00:00.000\",\n            \"to\": \"2024-12-01 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-11-18 00:00:00.000\",\n            \"to\": \"2024-11-24 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-11-11 00:00:00.000\",\n            \"to\": \"2024-11-17 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-11-04 00:00:00.000\",\n            \"to\": \"2024-11-10 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-10-28 00:00:00.000\",\n            \"to\": \"2024-11-03 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-10-21 00:00:00.000\",\n            \"to\": \"2024-10-27 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-10-14 00:00:00.000\",\n            \"to\": \"2024-10-20 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-10-07 00:00:00.000\",\n            \"to\": \"2024-10-13 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-09-30 00:00:00.000\",\n            \"to\": \"2024-10-06 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-09-23 00:00:00.000\",\n            \"to\": \"2024-09-29 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-09-16 00:00:00.000\",\n            \"to\": \"2024-09-22 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-09-09 00:00:00.000\",\n            \"to\": \"2024-09-15 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-09-02 00:00:00.000\",\n            \"to\": \"2024-09-08 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-08-26 00:00:00.000\",\n            \"to\": \"2024-09-01 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-08-19 00:00:00.000\",\n            \"to\": \"2024-08-25 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-08-12 00:00:00.000\",\n            \"to\": \"2024-08-18 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-08-05 00:00:00.000\",\n            \"to\": \"2024-08-11 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-07-29 00:00:00.000\",\n            \"to\": \"2024-08-04 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-07-22 00:00:00.000\",\n            \"to\": \"2024-07-28 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-07-15 00:00:00.000\",\n            \"to\": \"2024-07-21 23:59:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"from\": \"2024-07-08 00:00:00.000\",\n            \"to\": \"2024-07-14 23:59:00.000\"\n        }\n    ]\n}"}],"_postman_id":"19070b96-11c0-47b0-aac1-71c0031c80b3"}],"id":"4d37b07e-9680-4093-ab3e-171204cb54be","_postman_id":"4d37b07e-9680-4093-ab3e-171204cb54be","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Roster","item":[{"name":"Get Employee Rosters","id":"e38155a2-0574-4393-a67d-5dbb36e77677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-rosters","description":"<p>Get employee rostered shifts from the system including tasks and cross-rostered groupings.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-rosters"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"36edf060-bcb3-4308-8ab9-6b47dea5e9a2","name":"Get Employee Rosters","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-rosters"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:13:52 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"127393"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2024-12-19 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7138\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2024-12-20 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7139\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-06 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7407\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-07 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7419\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-08 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7421\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-09 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7422\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-10 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7424\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-13 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8259\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-14 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8260\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-15 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8261\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-16 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8262\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-01-17 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8504\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-04 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 11013\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-22 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12241\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-23 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12245\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-24 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12246\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-25 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12247\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-28 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 23,\n            \"code\": \"09001800\",\n            \"description\": \"09:00-18:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 13144\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-29 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 13145\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-04-30 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 13146\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-05-12 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 13970\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-05-23 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 16,\n            \"code\": \"CLIP0006\",\n            \"description\": \"Rest Day x2 - Clip\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 13911\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-09 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 15012\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-10 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 15027\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-11 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 15036\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-12 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 15059\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-13 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 25,\n            \"code\": \"09002000\",\n            \"description\": \"09:00-20:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 15069\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-14 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 15,\n            \"code\": \"CLIP0005\",\n            \"description\": \"Rest Day x1.5 - Clip\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 14933\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-15 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 16,\n            \"code\": \"CLIP0006\",\n            \"description\": \"Rest Day x2 - Clip\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 14966\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-06-28 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 15489\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-07-01 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 15727\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-08-25 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 17798\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-08-26 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 17804\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-08-27 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 17806\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-08-28 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 17807\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-08-29 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 17808\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-09-01 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 17239\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-09-02 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 17244\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-09-30 00:00:00.000\",\n            \"memo\": \"\",\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": 0,\n            \"company_grouping_02_id\": 0,\n            \"company_grouping_03_id\": 0,\n            \"company_grouping_04_id\": 0,\n            \"company_grouping_05_id\": 0,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 24,\n            \"code\": \"09001500\",\n            \"description\": \"09:00-15:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 20961\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-10-14 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 21,\n            \"code\": \"09001200\",\n            \"description\": \"09:00-12:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 19776\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-10-16 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 21,\n            \"code\": \"09001200\",\n            \"description\": \"09:00-12:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 19778\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-11-04 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 20528\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-11-05 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 20529\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-11-06 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 20530\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-11-07 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 20531\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-11-08 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 20532\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-01 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 21487\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-02 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 21488\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-03 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 21489\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-04 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 21490\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-05 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 21491\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-29 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 22303\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-30 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 22304\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2025-12-31 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 22305\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 22306\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 22307\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-26 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 26,\n            \"code\": \"FLEXI001\",\n            \"description\": \"08:15-17:00 1hr lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 23602\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-27 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 26,\n            \"code\": \"FLEXI001\",\n            \"description\": \"08:15-17:00 1hr lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 23603\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-28 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 26,\n            \"code\": \"FLEXI001\",\n            \"description\": \"08:15-17:00 1hr lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 23604\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-29 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 26,\n            \"code\": \"FLEXI001\",\n            \"description\": \"08:15-17:00 1hr lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 23605\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-30 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 26,\n            \"code\": \"FLEXI001\",\n            \"description\": \"08:15-17:00 1hr lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 23606\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-02-09 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 24285\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-02-10 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 24286\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-02-11 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 24287\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-02-12 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 24288\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-02-13 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 20,\n            \"code\": \"09001700\",\n            \"description\": \"09:00-17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 24289\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-03-16 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 25378\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-03-17 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 25379\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-03-18 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 25380\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-03-19 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 16,\n            \"code\": \"CLIP0006\",\n            \"description\": \"Rest Day x2 - Clip\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 25381\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-03-20 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 12,\n            \"code\": \"1800020X\",\n            \"description\": \"18:00-02:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 25382\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-10-04 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 5198\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-10-24 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 12,\n            \"code\": \"1800020X\",\n            \"description\": \"18:00-02:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 5789\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-10-25 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 12,\n            \"code\": \"1800020X\",\n            \"description\": \"18:00-02:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 5790\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-10-26 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 12,\n            \"code\": \"1800020X\",\n            \"description\": \"18:00-02:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 5791\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-10-27 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 12,\n            \"code\": \"1800020X\",\n            \"description\": \"18:00-02:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 5792\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-12-04 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7187\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-12-19 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7141\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2024-12-20 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 13,\n            \"code\": \"07001815\",\n            \"description\": \"07:00-18:15\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7142\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-06 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7409\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-07 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7426\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-08 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7428\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-09 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7429\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-10 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 14,\n            \"code\": \"0900170X\",\n            \"description\": \"09:00-17:00 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 7431\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-13 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8264\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-14 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8265\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-15 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8266\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-16 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8267\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-17 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8269\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-20 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 11,\n            \"code\": \"CLIP0001\",\n            \"description\": \"09:00-17:30 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8285\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-21 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 11,\n            \"code\": \"CLIP0001\",\n            \"description\": \"09:00-17:30 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8293\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-22 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 11,\n            \"code\": \"CLIP0001\",\n            \"description\": \"09:00-17:30 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8294\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-23 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 11,\n            \"code\": \"CLIP0001\",\n            \"description\": \"09:00-17:30 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8296\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-01-24 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 11,\n            \"code\": \"CLIP0001\",\n            \"description\": \"09:00-17:30 60 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 8297\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-03-26 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 2,\n            \"code\": \"DS002\",\n            \"description\": \"14:00 - 22:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 11068\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-04-04 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 18,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 11014\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-04-22 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12242\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-04-23 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12249\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-04-24 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12250\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2025-04-25 00:00:00.000\",\n            \"memo\": null,\n            \"tasks\": \"\",\n            \"company_grouping_01_id\": null,\n            \"company_grouping_02_id\": null,\n            \"company_grouping_03_id\": null,\n            \"company_grouping_04_id\": null,\n            \"company_grouping_05_id\": null,\n            \"company_grouping_06_id\": null,\n            \"company_grouping_07_id\": null,\n            \"company_grouping_08_id\": null,\n            \"company_grouping_09_id\": null,\n            \"company_grouping_10_id\": null,\n            \"company_grouping_01_description\": null,\n            \"company_grouping_02_description\": null,\n            \"company_grouping_03_description\": null,\n            \"company_grouping_04_description\": null,\n            \"company_grouping_05_description\": null,\n            \"company_grouping_06_description\": null,\n            \"company_grouping_07_description\": null,\n            \"company_grouping_08_description\": null,\n            \"company_grouping_09_description\": null,\n            \"company_grouping_10_description\": null,\n            \"company_grouping_01_colour\": null,\n            \"company_grouping_02_colour\": null,\n            \"company_grouping_03_colour\": null,\n            \"company_grouping_04_colour\": null,\n            \"company_grouping_05_colour\": null,\n            \"company_grouping_06_colour\": null,\n            \"company_grouping_07_colour\": null,\n            \"company_grouping_08_colour\": null,\n            \"company_grouping_09_colour\": null,\n            \"company_grouping_10_colour\": null,\n            \"daily_schedule_id\": 3,\n            \"code\": \"DS003\",\n            \"description\": \"22:00 - 06:00 30 min lunch deducted\",\n            \"drop_shift_request_id\": null,\n            \"swap_shift_request_id\": null,\n            \"roster_shift_id\": 12251\n        }\n    ]\n}"}],"_postman_id":"e38155a2-0574-4393-a67d-5dbb36e77677"}],"id":"706075e3-c44d-4df7-b0b0-9926ea89b034","_postman_id":"706075e3-c44d-4df7-b0b0-9926ea89b034","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Schedule","item":[{"name":"Get Employee Schedules","id":"4d97b68e-2dd3-41b0-8439-791baaba8caa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-schedules?from=2026-01-01&to=2026-01-07","description":"<p>This endpoint requires you to pass in [from] and [to] parameters (which can be in the future) and it will return the default schedules for the employees based on their period schedule and rotation. The from and to GET parameters should be provided as YYYY-MM-DD dates.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-schedules"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"from","value":"2026-01-01"},{"key":"to","value":"2026-01-07"}],"variable":[]}},"response":[{"id":"0a4c92ed-54d3-4d6e-81fc-42a4dca3613a","name":"Get Employee Schedules","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-schedules?from=2026-01-01&to=2026-01-07","host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"path":["employee-schedules"],"query":[{"key":"from","value":"2026-01-01"},{"key":"to","value":"2026-01-07"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:13:34 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37763"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 1,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 2,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 30,\n            \"code\": \"COPY0001\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) Cost Centre Link\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 29,\n            \"code\": \"DS07\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) Cost Centre Link\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 3,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 4,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 4,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 4,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 4,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 4,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 4,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 4,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 9,\n            \"code\": \"DS005\",\n            \"description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 30,\n            \"code\": \"COPY0001\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) Cost Centre Link\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 29,\n            \"code\": \"DS07\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) Cost Centre Link\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 6,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 8,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 9,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 9,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 9,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 30,\n            \"code\": \"COPY0001\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) Cost Centre Link\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 9,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 29,\n            \"code\": \"DS07\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) Cost Centre Link\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 9,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 9,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 9,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 17,\n            \"code\": \"DS06\",\n            \"description\": \"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 10,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 12,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 12,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 12,\n            \"date_and_time\": \"2026-01-03 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 8,\n            \"code\": \"RD004\",\n            \"description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 12,\n            \"date_and_time\": \"2026-01-04 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 7,\n            \"code\": \"RD003\",\n            \"description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 23:45:00.000\"\n        },\n        {\n            \"employee_id\": 12,\n            \"date_and_time\": \"2026-01-05 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 12,\n            \"date_and_time\": \"2026-01-06 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 12,\n            \"date_and_time\": \"2026-01-07 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 13,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 13,\n            \"date_and_time\": \"2026-01-01 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        },\n        {\n            \"employee_id\": 13,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 2,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 1,\n            \"code\": \"DS001\",\n            \"description\": \"06:00 - 14:00 30 min lunch deducted\",\n            \"earliest_start_time\": \"1899-12-30 02:00:00.000\",\n            \"start_time\": \"1899-12-30 06:00:00.000\",\n            \"finish_time\": \"1899-12-30 14:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 18:00:00.000\"\n        },\n        {\n            \"employee_id\": 13,\n            \"date_and_time\": \"2026-01-02 00:00:00.000\",\n            \"priority\": 3,\n            \"default\": 1,\n            \"contribute\": 1,\n            \"daily_schedule_id\": 4,\n            \"code\": \"DS004\",\n            \"description\": \"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\",\n            \"earliest_start_time\": \"1899-12-30 05:00:00.000\",\n            \"start_time\": \"1899-12-30 09:00:00.000\",\n            \"finish_time\": \"1899-12-30 17:00:00.000\",\n            \"latest_finish_time\": \"1899-12-30 21:00:00.000\"\n        }\n    ]\n}"}],"_postman_id":"4d97b68e-2dd3-41b0-8439-791baaba8caa"}],"id":"cb63e13a-1db0-4c4c-b6bf-9cb6c0c3d336","_postman_id":"cb63e13a-1db0-4c4c-b6bf-9cb6c0c3d336","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Timesheet","item":[{"name":"Get Employee Timesheets","id":"5c3e2654-a1b1-4bfb-be9e-253c344c7be9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-timesheets","description":"<p>Gets a summary timesheet for the employees with absences, swipes, rates and static registers. The job or cost_centre GET parameter can be specified to include job costing and cost centre records.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-timesheets"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"0cd44f9b-02c4-4d29-883a-a05d546c3390","name":"Get Employee Timesheets","originalRequest":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-timesheets"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:12:45 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"45716"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"set-cookie","value":"ci_session=q41f63rfro2vjk03ucueclo9idki8cmq; expires=Tue, 02 Jun 2026 13:08:20 GMT; Max-Age=86400; path=/; secure; HttpOnly; SameSite=Lax"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-02 00:00:00.000\",\n            \"daily_schedule_id\": 7,\n            \"daily_schedule_description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 8000,\n            \"date_and_time\": \"2023-04-02 23:59:00.000\",\n            \"daily_schedule_id\": null,\n            \"daily_schedule_description\": null,\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": null,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-03 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": \"2023-04-03 09:00:00,2023-04-03 17:00:00\",\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": 450,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": 450,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-04 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": \"1\",\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": 450,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": 450,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-05 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": \"1\",\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": 450,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": 450,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-06 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": \"1\",\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": 450,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": 450,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-07 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": \"1\",\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": 450,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": 450,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-08 00:00:00.000\",\n            \"daily_schedule_id\": 8,\n            \"daily_schedule_description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-09 00:00:00.000\",\n            \"daily_schedule_id\": 7,\n            \"daily_schedule_description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 8000,\n            \"date_and_time\": \"2023-04-09 23:59:00.000\",\n            \"daily_schedule_id\": null,\n            \"daily_schedule_description\": null,\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": null,\n            \"work_status_ref_description\": null,\n            \"total_1\": 450,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": 1800,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": 2250,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-10 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-11 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-12 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-13 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-14 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-15 00:00:00.000\",\n            \"daily_schedule_id\": 8,\n            \"daily_schedule_description\": \"Rest Day @ x2 OT (No break deducted) OT Approval\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-16 00:00:00.000\",\n            \"daily_schedule_id\": 7,\n            \"daily_schedule_description\": \"Rest Day @ x1.5 OT (No break deducted) OT Approval\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 8000,\n            \"date_and_time\": \"2023-04-16 23:59:00.000\",\n            \"daily_schedule_id\": null,\n            \"daily_schedule_description\": null,\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": null,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-17 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"type\": 1000,\n            \"date_and_time\": \"2023-04-18 00:00:00.000\",\n            \"daily_schedule_id\": 9,\n            \"daily_schedule_description\": \"Open Shift - None Clocking 7.5 hours with Surplus\",\n            \"period_schedule_id\": 3,\n            \"period_schedule_description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"absence_ref_ids\": null,\n            \"swipes\": null,\n            \"period_schedule_schedule_type\": 0,\n            \"daily_schedule_schedule_type\": 0,\n            \"work_status_ref_description\": null,\n            \"total_1\": null,\n            \"total_2\": null,\n            \"total_3\": null,\n            \"total_4\": null,\n            \"total_5\": null,\n            \"total_6\": null,\n            \"total_7\": null,\n            \"total_8\": null,\n            \"total_9\": null,\n            \"total_10\": null,\n            \"total_11\": null,\n            \"total_12\": null,\n            \"total_13\": null,\n            \"total_14\": null,\n            \"total_15\": null,\n            \"total_16\": null,\n            \"total_17\": null,\n            \"total_18\": null,\n            \"total_19\": null,\n            \"total_20\": null,\n            \"total\": null,\n            \"total_cost_1\": null,\n            \"total_cost_2\": null,\n            \"total_cost_3\": null,\n            \"total_cost_4\": null,\n            \"total_cost_5\": null,\n            \"total_cost_6\": null,\n            \"total_cost_7\": null,\n            \"total_cost_8\": null,\n            \"total_cost_9\": null,\n            \"total_cost_10\": null,\n            \"total_cost_11\": null,\n            \"total_cost_12\": null,\n            \"total_cost_13\": null,\n            \"total_cost_14\": null,\n            \"total_cost_15\": null,\n            \"total_cost_16\": null,\n            \"total_cost_17\": null,\n            \"total_cost_18\": null,\n            \"total_cost_19\": null,\n            \"total_cost_20\": null,\n            \"total_cost\": null,\n            \"static_register_1\": null,\n            \"static_register_2\": null,\n            \"static_register_3\": null,\n            \"static_register_4\": null,\n            \"static_register_5\": null,\n            \"static_register_6\": null,\n            \"static_register_7\": null,\n            \"static_register_8\": null,\n            \"static_register_9\": null,\n            \"static_register_10\": null,\n            \"static_register_11\": null,\n            \"static_register_12\": null,\n            \"static_register_13\": null,\n            \"static_register_14\": null,\n            \"static_register_15\": null,\n            \"static_register_16\": null,\n            \"static_register_17\": null,\n            \"static_register_18\": null,\n            \"static_register_19\": null,\n            \"static_register_20\": null,\n            \"static_register_21\": null,\n            \"static_register_22\": null,\n            \"static_register_23\": null,\n            \"static_register_24\": null,\n            \"static_register_25\": null,\n            \"static_register_26\": null,\n            \"static_register_27\": null,\n            \"static_register_28\": null,\n            \"static_register_29\": null,\n            \"static_register_30\": null,\n            \"static_register_31\": null,\n            \"static_register_32\": null,\n            \"static_register_33\": null,\n            \"static_register_34\": null,\n            \"static_register_35\": null,\n            \"static_register_36\": null,\n            \"static_register_37\": null,\n            \"static_register_38\": null,\n            \"static_register_39\": null,\n            \"static_register_40\": null,\n            \"opening_balance\": null,\n            \"target\": null,\n            \"accumulated\": null,\n            \"closing_balance\": null,\n            \"overspill\": null\n        }\n    ]\n}"}],"_postman_id":"5c3e2654-a1b1-4bfb-be9e-253c344c7be9"},{"name":"Add Employee Timesheet","id":"9d65bdae-ce14-45aa-ac63-40f9f81b6502","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"job_id","value":"957","type":"text"},{"key":"operation_id","value":"2528","type":"text"},{"key":"date_and_time","value":"2024-06-10","type":"text"},{"key":"start_time","value":"09:00","type":"text"},{"key":"stop_time","value":"17:00","type":"text"},{"key":"actual_time","value":"480","type":"text"},{"key":"actual_cost","value":"120.00","type":"text"},{"key":"actual_quantity","value":"5","type":"text"},{"key":"status","value":"0","type":"text"},{"key":"start_terminal_id","value":"5","type":"text"},{"key":"stop_terminal_id","value":"5","type":"text"},{"key":"start_flag","value":"0","type":"text"},{"key":"stop_flag","value":"0","type":"text"},{"key":"start_memo","value":"","type":"text"},{"key":"stop_memo","value":"","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-timesheets?job=1","description":"<p>Adds a new timesheet for the employee. The job or cost_centre GET parameter can be specified to add job costing or cost centre timesheets. Please note that start_time and stop_time will be anchored to date_and_time and stop_time will be advanced to the following day if it is before start_time. If start_terminal_id and stop_terminal_id are not specified, they will default to [Pwa Default Terminal Description]. If status is not specified, it will default to 0. The data will be automatically calculated upon modification.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-timesheets"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"job","value":"1"}],"variable":[]}},"response":[],"_postman_id":"9d65bdae-ce14-45aa-ac63-40f9f81b6502"},{"name":"Update Employee Timesheet","id":"cda9d206-3c84-4f74-8233-7a6403a4c5ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"job_id","value":"957","type":"text"},{"key":"operation_id","value":"2528","type":"text"},{"key":"date_and_time","value":"2024-06-10","type":"text"},{"key":"start_time","value":"09:00","type":"text"},{"key":"stop_time","value":"18:00","type":"text"},{"key":"actual_time","value":"540","type":"text"},{"key":"actual_cost","value":"135.00","type":"text"},{"key":"actual_quantity","value":"6","type":"text"},{"key":"status","value":"0","type":"text"},{"key":"start_terminal_id","value":"5","type":"text"},{"key":"stop_terminal_id","value":"5","type":"text"},{"key":"start_flag","value":"0","type":"text"},{"key":"stop_flag","value":"0","type":"text"},{"key":"start_memo","value":"","type":"text"},{"key":"stop_memo","value":"","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-timesheets/38342?job=1","description":"<p>Adds a new timesheet for the employee. The job or cost_centre GET parameter can be specified to add job costing or cost centre timesheets. Please note that start_time and stop_time will be anchored to date_and_time and stop_time will be advanced to the following day if it is before start_time. If start_terminal_id and stop_terminal_id are not specified, they will default to [Pwa Default Terminal Description]. If status is not specified, it will default to 0. The data will be automatically calculated upon modification.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-timesheets","38342"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"job","value":"1"}],"variable":[]}},"response":[],"_postman_id":"cda9d206-3c84-4f74-8233-7a6403a4c5ca"},{"name":"Delete Employee Timesheet","id":"c2dad7d8-5e27-4ee3-872d-18dd786b366c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-timesheets/38342?job=1","description":"<p>Deletes a timesheet for an employee. The job or cost_centre GET parameter can be specified to delete job costing or cost centre records.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-timesheets","38342"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"job","value":"1"}],"variable":[]}},"response":[],"_postman_id":"c2dad7d8-5e27-4ee3-872d-18dd786b366c"}],"id":"6b455508-dd95-4da8-b0e3-18084d0c6381","_postman_id":"6b455508-dd95-4da8-b0e3-18084d0c6381","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee UDF","item":[{"name":"Get Employee UDFs","id":"3b5c1165-2d9d-46e6-b56c-19457f8a9116","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-udfs","description":"<p>Get a list of employee user-defined fields in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-udfs"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"ca2b75ac-5300-41fb-ac96-951a45763bf0","name":"Get Employee UDFs","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-udfs"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:12:06 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": []\n}"}],"_postman_id":"3b5c1165-2d9d-46e6-b56c-19457f8a9116"},{"name":"Get Employee UDF","id":"1b34391f-85f6-442c-8b15-39eb1dd814aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-udfs/","description":"<p>Get a single employee user-defined field from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-udfs",""],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"26e9a27d-06ed-41e0-be6a-28d3787226ef","name":"Get Employee UDF","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-udfs/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:12:31 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": []\n}"}],"_postman_id":"1b34391f-85f6-442c-8b15-39eb1dd814aa"},{"name":"Add Employee UDF","id":"e935aba8-b678-4fcf-9d46-beead541909a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"218","type":"text"},{"key":"employee_udf_ref_id","value":"1","type":"text"},{"key":"data","value":"40.00","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-udfs","description":"<p>Adds a new employee user-defined field record to the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-udfs"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e935aba8-b678-4fcf-9d46-beead541909a"},{"name":"Update Employee UDF","id":"b2c8e899-4c1b-4c33-b6c8-3c7298a4f13e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":"42.50","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-udfs/2683","description":"<p>Updates an existing employee user-defined field in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-udfs","2683"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"disabled":true,"key":"data","value":"42.50"}],"variable":[]}},"response":[],"_postman_id":"b2c8e899-4c1b-4c33-b6c8-3c7298a4f13e"},{"name":"Delete Employee UDF","id":"1b954987-b143-4b1f-9309-398c4ca5c470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-udfs/2683","description":"<p>Deletes an existing employee user-defined field in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-udfs","2683"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b954987-b143-4b1f-9309-398c4ca5c470"}],"id":"39d8b134-ea40-42db-8172-b4f55b883d5a","_postman_id":"39d8b134-ea40-42db-8172-b4f55b883d5a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Get Employee","id":"d2066cc1-5074-44d2-bc91-19b4dc0d3c78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employees/10","description":"<p>Gets a single employee record from the system. The query GET parameter can be provided and contain a JSON string of key/value pairs where the key is roster_range_id, zone_id, last_x_hours or search and the value is a valid data type for that field. This can be used to restrict the returned data. The restrict_data GET parameter will force user/employee relationships to be rebuilt and only a subset of employee information will be returned; i.e. employee ID, badge and name.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employees","10"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"2ec81cc0-1dae-46b6-857d-c3f7941ea03f","name":"Get Employee","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employees/10"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 12:01:09 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"27995"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 10,\n            \"badge\": 51269783,\n            \"paylink\": \"349820\",\n            \"first_name\": \"Mark \",\n            \"middle_name\": \"William\",\n            \"last_name\": \"Hughes \",\n            \"date_of_birth\": \"1991-09-01 00:00:00.000\",\n            \"date_started_with_company\": \"2021-11-15 00:00:00.000\",\n            \"address\": \"18 Maple Grove\\nIslington\\nLondon\\nN1 4AB\",\n            \"postcode\": \"N1 4AB\",\n            \"home_tel\": \"01632 960123\",\n            \"mobile_tel\": \"07700 912345\",\n            \"e_mail\": \"a.butler@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"GGH4943729\",\n            \"passport_number\": \"11243654\",\n            \"visa_number\": \"88987672\",\n            \"nok_name\": \"Greg Hughes\",\n            \"nok_tel\": \"01882 456882\",\n            \"bank_name\": \"Northbridge Bank\",\n            \"bank_address\": \"Northbridge Bank\\n88 Kingsway\\nHolborn\\nLondon\\nWC2B 6AA\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"M. Hughes\",\n            \"account_number\": \"12345678\",\n            \"account_sort_code\": \"12-34-56\",\n            \"pension_name\": \"Evergreen Retirement Plan\",\n            \"pension_number\": \"238023523\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"2026-03-23 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"AB23 CDE\",\n            \"employee_guid\": \"8B3B8E74-3FD0-4BC8-A877-B959E5940CD6\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": null,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": 21,\n            \"zone_ids\": \"11,5,1,9,7\",\n            \"total_records\": 1,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 49,\n                \"description\": \"English\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 6,\n                \"description\": \"Father\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 1,\n                \"code\": \"PROM\",\n                \"description\": \"Production Manager\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-27 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2026-02-26 13:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"job_id\": 5,\n                \"operation_id\": 7,\n                \"job_description\": \"1002 30 chairs for xyz\",\n                \"operation_description\": \"Assembly\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-14 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        }\n    ]\n}"}],"_postman_id":"d2066cc1-5074-44d2-bc91-19b4dc0d3c78"},{"name":"Get Employees","id":"7d2a8acb-f683-400c-8088-267e308c5dde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employees","description":"<p>Get a list of employees in the system along with their groupings, current roll call status and PWA policy. Additionally, if the query string parameter ?context=user is provided and the employee is a user, information about all employees under their user account can be obtained. The context GET parameter can be specified as user if an employee who is also a user wishes to retrieve information for all employees under their remit. If context is emergency and the employee is also a user, all employees in zones covered by that user can be retrieved. The query GET parameter can be provided and contain a JSON string of key/value pairs where the key is roster_range_id, zone_id, last_x_hours or search and the value is a valid data type for that field. This can be used to restrict the returned data. The restrict_data GET parameter will force user/employee relationships to be rebuilt and only a subset of employee information will be returned; i.e. employee ID, badge and name. The rebuild_user_employee_relationships GET parameter will force user/employee relationships to be rebuilt.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employees"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"0996dce2-4744-430d-bedb-261d51d4bc64","name":"Get Employees","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 11:54:06 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"content-length","value":"415453"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 1,\n            \"badge\": 0,\n            \"paylink\": null,\n            \"first_name\": \"Terminal Admin\",\n            \"middle_name\": \"\",\n            \"last_name\": \"DO NOT MODIFY\",\n            \"date_of_birth\": \"1990-08-07 00:00:00.000\",\n            \"date_started_with_company\": \"2015-04-05 00:00:00.000\",\n            \"address\": \"100 Somewhere Street, Somewhere Nice\",\n            \"postcode\": \"IG12 9PP\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"Something@somewhere.com\",\n            \"Sex\": \"Male\",\n            \"ni_code\": null,\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"Mary Employee\",\n            \"nok_tel\": \"01234 567890\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"0222A76A-0C07-49D9-AFDA-CFC99B93596F\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 1,\n                \"description\": \"Mother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 3,\n                \"description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": null,\n                \"description\": null\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-03-21 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-13 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 9,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Test\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 2,\n            \"badge\": 48271935,\n            \"paylink\": \"907134\",\n            \"first_name\": \"Emily\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Carter\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2021-12-21 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"88932738-9973-46DC-8208-417844BEE495\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 6,\n                \"code\": \"FINA\",\n                \"description\": \"Finance\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 3,\n                \"code\": \"FINM\",\n                \"description\": \"Finance Manager\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-29 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-03-23 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 3,\n            \"badge\": 90713462,\n            \"paylink\": \"778231\",\n            \"first_name\": \"James\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Harrison\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2023-02-23 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"2300913B-A427-45C9-97C5-C6474D158E6F\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 8,\n                \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-29 20:25:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-12 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 4,\n            \"badge\": 65198240,\n            \"paylink\": \"662905\",\n            \"first_name\": \"Olivia\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Bennett\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2023-09-12 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"1748944B-262C-45DE-8124-68FC5306A056\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 1,\n                \"description\": \"Mother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 3,\n                \"description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 9,\n                \"code\": \"CUST\",\n                \"description\": \"Customer Service\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 7,\n                \"code\": \"CUSM\",\n                \"description\": \"Customer Service Manager\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-17 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-05-17 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 5,\n            \"badge\": 23847591,\n            \"paylink\": \"651982\",\n            \"first_name\": \"Benjamin\",\n            \"middle_name\": \"Thomas\",\n            \"last_name\": \"Foster\",\n            \"date_of_birth\": \"1992-08-19 00:00:00.000\",\n            \"date_started_with_company\": \"2001-03-06 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"null\",\n            \"mobile_tel\": \"7584605490\",\n            \"e_mail\": \"\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"Dean Forster \",\n            \"nok_tel\": \"01234 568745\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"A78CCB64-2C52-489E-8649-A7AEEB930DFB\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": 26,\n            \"zone_ids\": \"1\",\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-27 20:25:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2025-10-15 09:07:00.000\",\n                \"reader_direction\": 1,\n                \"terminal_id\": 1,\n                \"job_id\": 1,\n                \"operation_id\": 4,\n                \"job_description\": \"Software installation\",\n                \"operation_description\": \"Testing\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-11 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 6,\n            \"badge\": 79461328,\n            \"paylink\": \"238475\",\n            \"first_name\": \"Kevin\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Sutherland\",\n            \"date_of_birth\": \"1971-04-12 00:00:00.000\",\n            \"date_started_with_company\": \"1991-05-13 00:00:00.000\",\n            \"address\": \"AAAA\\nBBBBBB\",\n            \"postcode\": \"tt23t2\",\n            \"home_tel\": \"wtw\",\n            \"mobile_tel\": \"D\",\n            \"e_mail\": \"n.prudence@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"sdfsdfsf\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"WE\",\n            \"nok_tel\": \"EWF\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"9BCECF3A-6AC0-459F-8398-94504142EA81\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": 31,\n            \"zone_ids\": \"11,5,1,9,7\",\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 1,\n                \"description\": \"Married\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 4,\n                \"description\": \"Aunt\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 8,\n                \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 8,\n                \"code\": \"QUAL\",\n                \"description\": \"Quality Control\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-27 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2026-01-27 10:18:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 1,\n                \"job_id\": 2,\n                \"operation_id\": 7,\n                \"job_description\": \"1000 Generators Durr Ltd Title\",\n                \"operation_description\": \"Assembly\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-04-20 11:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 35,\n                \"cost_centre_id\": 1547,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Maintenance\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 7,\n            \"badge\": 86724109,\n            \"paylink\": \"794613\",\n            \"first_name\": \"Alexander\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Hayes\",\n            \"date_of_birth\": \"1988-05-20 00:00:00.000\",\n            \"date_started_with_company\": \"2012-08-23 00:00:00.000\",\n            \"address\": \"78 Southwark Bridge Road\\nSouthwark\\nLondon\",\n            \"postcode\": \"SE1 0AS\",\n            \"home_tel\": \"1707258984\",\n            \"mobile_tel\": \"741256524\",\n            \"e_mail\": \"d.cooper@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"JM123456D\",\n            \"passport_number\": \"123654987\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"Mrs Hayes \",\n            \"nok_tel\": \"7854764362\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"AB24ZYX\",\n            \"employee_guid\": \"6F77AB63-8C34-4B7E-A095-0BDEFE034CBE\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": 20,\n            \"zone_ids\": \"11,5,1,9,7\",\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 1,\n                \"description\": \"Married\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 11,\n                \"description\": \"Wife\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-29 14:41:57.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"On Site - PWA\",\n                \"terminal_id\": 1,\n                \"zone_id\": 3,\n                \"terminal_description\": \"GPS Device\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - PWA\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2025-04-24 13:19:00.000\",\n                \"reader_direction\": 1,\n                \"terminal_id\": 1,\n                \"job_id\": 1,\n                \"operation_id\": 4,\n                \"job_description\": \"Software installation\",\n                \"operation_description\": \"Testing\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-13 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 8,\n            \"badge\": 10593847,\n            \"paylink\": \"105938\",\n            \"first_name\": \"Harry \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Franklin\",\n            \"date_of_birth\": \"1977-08-03 00:00:00.000\",\n            \"date_started_with_company\": \"2003-06-02 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"a.scott@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"N/A\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"315A9C56-69E8-4997-AAA6-BE17E84C05CB\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 1,\n                \"description\": \"Married\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-28 17:40:57.000\",\n                \"reader\": 2,\n                \"reader_direction\": 2,\n                \"reader_description\": \"Out - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 2,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"Off Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-14 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 9,\n            \"badge\": 34982076,\n            \"paylink\": \"867241\",\n            \"first_name\": \"Ethan\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Russell\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2020-07-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"sghweryqeyh@email.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"46229DF2-1CC7-46F2-BA7C-DDAC49ACF553\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 1,\n                \"description\": \"Married\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 4,\n                \"description\": \"Aunt\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 8,\n                \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 6,\n                \"code\": \"QASD\",\n                \"description\": \"Quality Assurance Director\",\n                \"colour\": \"rgb(196,255,206)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-27 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-09 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 10,\n            \"badge\": 51269783,\n            \"paylink\": \"349820\",\n            \"first_name\": \"Mark \",\n            \"middle_name\": \"William\",\n            \"last_name\": \"Hughes \",\n            \"date_of_birth\": \"1991-09-01 00:00:00.000\",\n            \"date_started_with_company\": \"2021-11-15 00:00:00.000\",\n            \"address\": \"18 Maple Grove\\nIslington\\nLondon\\nN1 4AB\",\n            \"postcode\": \"N1 4AB\",\n            \"home_tel\": \"01632 960123\",\n            \"mobile_tel\": \"07700 912345\",\n            \"e_mail\": \"a.butler@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"GGH4943729\",\n            \"passport_number\": \"11243654\",\n            \"visa_number\": \"88987672\",\n            \"nok_name\": \"Greg Hughes\",\n            \"nok_tel\": \"01882 456882\",\n            \"bank_name\": \"Northbridge Bank\",\n            \"bank_address\": \"Northbridge Bank\\n88 Kingsway\\nHolborn\\nLondon\\nWC2B 6AA\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"M. Hughes\",\n            \"account_number\": \"12345678\",\n            \"account_sort_code\": \"12-34-56\",\n            \"pension_name\": \"Evergreen Retirement Plan\",\n            \"pension_number\": \"238023523\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"2026-03-23 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"AB23 CDE\",\n            \"employee_guid\": \"8B3B8E74-3FD0-4BC8-A877-B959E5940CD6\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": null,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": 21,\n            \"zone_ids\": \"11,5,1,9,7\",\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 49,\n                \"description\": \"English\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 6,\n                \"description\": \"Father\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 1,\n                \"code\": \"PROM\",\n                \"description\": \"Production Manager\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-27 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2026-02-26 13:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"job_id\": 5,\n                \"operation_id\": 7,\n                \"job_description\": \"1002 30 chairs for xyz\",\n                \"operation_description\": \"Assembly\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-14 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 11,\n            \"badge\": 10974379,\n            \"paylink\": \"512697\",\n            \"first_name\": \"Seth \",\n            \"middle_name\": \"J\",\n            \"last_name\": \"Wills\",\n            \"date_of_birth\": \"1994-06-14 00:00:00.000\",\n            \"date_started_with_company\": \"2022-06-06 00:00:00.000\",\n            \"address\": \"123456789\",\n            \"postcode\": \"123456789\",\n            \"home_tel\": \"123456789\",\n            \"mobile_tel\": \"123456789\",\n            \"e_mail\": \"b.holt@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"123456789\",\n            \"passport_number\": \"123456789\",\n            \"visa_number\": \"123456789\",\n            \"nok_name\": \"123456789\",\n            \"nok_tel\": \"123456789\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"A3107F77-6405-4817-A246-92DA518CBB21\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 5,\n                \"description\": \"Civil Partnership\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 11,\n                \"description\": \"Wife\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 8,\n                \"code\": \"MANC\",\n                \"description\": \"Manchester\",\n                \"colour\": \"rgb(196,255,206)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-27 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-15 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 12,\n            \"badge\": 11287857,\n            \"paylink\": \"780413\",\n            \"first_name\": \"Albert \",\n            \"middle_name\": \"Arnold \",\n            \"last_name\": \"Fresh \",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2008-08-20 00:00:00.000\",\n            \"address\": \"123 Somewhere,\\nSomewhere Else,\\nSomewhere Nice\",\n            \"postcode\": \"NN10 8RD\",\n            \"home_tel\": \"0123456789\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"m.walsh@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"1234567889\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"Angela Fresh \",\n            \"nok_tel\": \"123456789\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"WN70WPD\",\n            \"employee_guid\": \"98DDE74B-E980-470C-84B9-134A0CB381DC\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 49,\n                \"description\": \"English\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 3,\n                \"description\": \"Sister\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 8,\n                \"code\": \"MANC\",\n                \"description\": \"Manchester\",\n                \"colour\": \"rgb(196,255,206)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 1,\n                \"code\": \"PROM\",\n                \"description\": \"Production Manager\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-26 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-14 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 13,\n            \"badge\": 78041325,\n            \"paylink\": \"293847\",\n            \"first_name\": \"Charlotte\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Reed\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2022-09-05 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"default90@email.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"8D7C15A9-7CF1-488B-B82B-9A5D326E97E9\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 9,\n                \"code\": \"CUST\",\n                \"description\": \"Customer Service\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 7,\n                \"code\": \"CUSM\",\n                \"description\": \"Customer Service Manager\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-03-09 17:00:00.000\",\n                \"reader\": 2,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-17 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 14,\n            \"badge\": 29384710,\n            \"paylink\": \"648209\",\n            \"first_name\": \"Robbie \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Williams \",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2022-09-05 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"default6@email.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"457441E0-A145-4CAC-A5D8-9EB9052BF7B8\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 7,\n                \"code\": \"MAIN\",\n                \"description\": \"Maintenance\",\n                \"colour\": \"rgb(196,255,206)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-06-01 11:12:37.000\",\n                \"reader\": 2,\n                \"reader_direction\": 2,\n                \"reader_description\": \"Out - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 2,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"Off Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-15 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 15,\n            \"badge\": 84952142,\n            \"paylink\": \"971503\",\n            \"first_name\": \"Amelia\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Coleman\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2020-10-22 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"default5@email.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"2D4F295E-314F-4D01-AFC7-93E4280A8B82\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 6,\n                \"code\": \"FINA\",\n                \"description\": \"Finance\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-06-01 08:15:53.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"In - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 1,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-13 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 22,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 16,\n            \"badge\": 64820931,\n            \"paylink\": \"426891\",\n            \"first_name\": \"Abigail\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Howard\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2021-07-05 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"default4@email.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"C9FFFAE2-C6DE-45A5-BB6C-3AD378CF4ED5\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 6,\n                \"code\": \"FINA\",\n                \"description\": \"Finance\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 3,\n                \"code\": \"FINM\",\n                \"description\": \"Finance Manager\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-06-01 08:30:53.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"In - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 1,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-19 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 22,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 17,\n            \"badge\": 97150328,\n            \"paylink\": \"835720\",\n            \"first_name\": \"Katia\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Crust\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2021-06-14 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"default3@email.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"8F05F42B-44FF-4F4C-A599-3B25E89444BD\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 9,\n                \"code\": \"CUST\",\n                \"description\": \"Customer Service\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-28 17:26:16.000\",\n                \"reader\": 2,\n                \"reader_direction\": 2,\n                \"reader_description\": \"Out - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 2,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"Off Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-13 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 18,\n            \"badge\": 11065831,\n            \"paylink\": \"109384\",\n            \"first_name\": \"Dylan\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Evian\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2023-05-02 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"default2@email.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"7E7B44E5-646F-4DEE-A5B0-03D4EC6CD21C\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 8,\n                \"code\": \"QUAL\",\n                \"description\": \"Quality Control\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 6,\n                \"code\": \"QASD\",\n                \"description\": \"Quality Assurance Director\",\n                \"colour\": \"rgb(196,255,206)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 19,\n            \"badge\": 42689175,\n            \"paylink\": \"564738\",\n            \"first_name\": \"Richard \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Arnold\",\n            \"date_of_birth\": \"2005-03-04 00:00:00.000\",\n            \"date_started_with_company\": \"2023-10-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"c.williams-amos@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"5A72DFE2-31AB-4721-970D-7841AB8646AF\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-28 17:28:06.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"In - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 1,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2025-12-05 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 22,\n                \"cost_centre_id\": 7,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Head Office\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 20,\n            \"badge\": 83572049,\n            \"paylink\": \"920174\",\n            \"first_name\": \"Lily\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Patterson\",\n            \"date_of_birth\": \"2001-07-15 00:00:00.000\",\n            \"date_started_with_company\": \"2024-03-18 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"L.Patterson@gmail.com\",\n            \"Sex\": \"Female\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"Ryan Patterson\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"AA2B912C-FCA5-40C3-903C-777D5B86EC0C\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 2,\n                \"description\": \"Miss\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 49,\n                \"description\": \"English\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 2,\n                \"description\": \"Brother\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 9,\n                \"code\": \"CUST\",\n                \"description\": \"Customer Service\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 7,\n                \"code\": \"CUSM\",\n                \"description\": \"Customer Service Manager\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 21,\n            \"badge\": 10938476,\n            \"paylink\": \"387562\",\n            \"first_name\": \"Moses\",\n            \"middle_name\": \"\",\n            \"last_name\": \"McGeorge\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-06-03 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"j.badis@actintime.co.uk\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"3583B8C8-53B6-42D6-888C-940D54E812EE\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 8,\n                \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-28 13:16:07.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"In - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 1,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-04-04 16:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 22,\n                \"cost_centre_id\": -1,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"[Attendance]\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 22,\n            \"badge\": 56473829,\n            \"paylink\": \"741029\",\n            \"first_name\": \"Henry\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Lawson\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-06-12 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"Henry.Lawson@gmail.com\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"22C72B85-786E-400A-A39E-159E450D75AE\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 8,\n                \"code\": \"MANC\",\n                \"description\": \"Manchester\",\n                \"colour\": \"rgb(196,255,206)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 1,\n                \"code\": \"PROM\",\n                \"description\": \"Production Manager\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 23,\n            \"badge\": 92017463,\n            \"paylink\": \"284760\",\n            \"first_name\": \"Jackson\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Forge\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-07-11 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"0F265DB1-FB23-485E-B336-B53631FEDF62\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 25,\n            \"badge\": 74102958,\n            \"paylink\": \"908172\",\n            \"first_name\": \"Owen\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Dixon\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-08-14 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"m.burrill@actintime.co.uk\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"DBD240CB-6636-40FF-9C91-0A2FBA5B4305\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 26,\n            \"badge\": 65319820,\n            \"paylink\": \"517439\",\n            \"first_name\": \"Lucas\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Howard\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-03-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"m.patterson@actintime.co.uk\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"5A0343B1-F19E-4036-809F-84FC6FA0554B\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 27,\n            \"badge\": 28476091,\n            \"paylink\": \"362905\",\n            \"first_name\": \"Nathan\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Foster\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2013-06-02 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"c.williams-amos@actintime.co.uk\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"D094E181-C169-48DA-883A-4133B5B555CC\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 28,\n            \"badge\": 90817234,\n            \"paylink\": \"845172\",\n            \"first_name\": \"Caleb\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Simmons\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2025-04-23 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"d.cooper@actintime.co.uk\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"7E77FC28-4C2C-43F0-9D12-99D6F03B3557\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 1,\n                \"code\": \"PROM\",\n                \"description\": \"Production Manager\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 29,\n            \"badge\": 51743968,\n            \"paylink\": \"193847\",\n            \"first_name\": \"Layla\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Bishop\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-09-02 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"1D9BB9D9-0B87-48DD-AE74-278C93D97DAB\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 2,\n                \"description\": \"Miss\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 2,\n                \"description\": \"Single\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 1,\n                \"description\": \"British\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 8,\n                \"description\": \"Left Company\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 9,\n                \"code\": \"CUST\",\n                \"description\": \"Customer Service\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 1,\n                \"code\": \"HOUR\",\n                \"description\": \"Hourly\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 7,\n                \"code\": \"CUSM\",\n                \"description\": \"Customer Service Manager\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-04-20 08:45:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-03-26 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 1542,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"London\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 30,\n            \"badge\": 36290517,\n            \"paylink\": \"672501\",\n            \"first_name\": \"Anthony\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Richards\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-11-04 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"test@actintime.co.uk\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"85A70CD2-0887-4A59-90F1-195FB333F02F\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 8,\n                \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 31,\n            \"badge\": 84517290,\n            \"paylink\": \"459283\",\n            \"first_name\": \"Cem\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Clarke\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-11-11 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"6DB921ED-876B-405D-A0B6-A088BB900299\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 8,\n                \"description\": \"Left Company\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-04-13 17:27:45.000\",\n                \"reader\": 2,\n                \"reader_direction\": 2,\n                \"reader_description\": \"Out - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 2,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"Off Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-03-26 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 32,\n            \"badge\": 4117672,\n            \"paylink\": \"730194\",\n            \"first_name\": \"Stella\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Barrett\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-11-18 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"A32729B0-854E-4B26-ADBD-AAD9FDA6847F\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 6,\n                \"code\": \"FINA\",\n                \"description\": \"Finance\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 3,\n                \"code\": \"FINM\",\n                \"description\": \"Finance Manager\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-03-21 02:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 34,\n            \"badge\": 19384756,\n            \"paylink\": \"281947\",\n            \"first_name\": \"Ruby\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Spencer\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-11-18 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"7C933A19-7074-4CDE-9C02-8E5F40FABA7F\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 6,\n                \"code\": \"FINA\",\n                \"description\": \"Finance\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 3,\n                \"code\": \"FINM\",\n                \"description\": \"Finance Manager\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-19 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 35,\n            \"badge\": 67250193,\n            \"paylink\": \"964203\",\n            \"first_name\": \"Violet\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Chapman\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-11-18 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"73A737F3-264C-4177-97C8-A1556C4A9D57\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 4,\n                \"description\": \"09:00-17:30 M-Th 17:00 Fr\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 6,\n                \"code\": \"FINA\",\n                \"description\": \"Finance\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 3,\n                \"code\": \"FINM\",\n                \"description\": \"Finance Manager\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-03-26 15:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 37,\n            \"badge\": 38756214,\n            \"paylink\": \"570192\",\n            \"first_name\": \"David \",\n            \"middle_name\": \"James \",\n            \"last_name\": \"Freeman\",\n            \"date_of_birth\": \"1997-08-20 00:00:00.000\",\n            \"date_started_with_company\": \"2024-12-02 00:00:00.000\",\n            \"address\": \"123 Shakespeare Road,\\nWelwyn Garden City \",\n            \"postcode\": \"AL8 7WC\",\n            \"home_tel\": \"01634 843754\",\n            \"mobile_tel\": \"7564875120\",\n            \"e_mail\": \"r.hexham@actintime.co.uk\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"11243654\",\n            \"visa_number\": \"88987672\",\n            \"nok_name\": \"Charley \",\n            \"nok_tel\": \"7945784590\",\n            \"bank_name\": \"Barclays\",\n            \"bank_address\": \"153 Shakespeare Street\\nChatham\\n\",\n            \"bank_tel\": \"753311532\",\n            \"account_name\": \"Barclays Bank \",\n            \"account_number\": \"295642\",\n            \"account_sort_code\": \"20-09-42\",\n            \"pension_name\": \"NEST\",\n            \"pension_number\": \"174935\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"2019-03-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \"195.0000\",\n            \"vehicle_registration_number\": \"RH27 ABC\",\n            \"employee_guid\": \"EDD6E151-71E1-45B4-9AED-4C823CD3E68B\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": 25,\n            \"zone_ids\": \"11,5,1,9,7\",\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 6,\n                \"description\": \"Widowed\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 49,\n                \"description\": \"English\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 3,\n                \"description\": \"Sister\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 4,\n                \"code\": \"PROD\",\n                \"description\": \"Production\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 1,\n                \"code\": \"PROM\",\n                \"description\": \"Production Manager\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 08:20:04.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"In - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 1,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2025-10-16 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 22,\n                \"job_id\": 1,\n                \"operation_id\": 3,\n                \"job_description\": \"Software installation\",\n                \"operation_description\": \"Tanking\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-19 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 38,\n            \"badge\": 45928371,\n            \"paylink\": \"438275\",\n            \"first_name\": \"Jim \",\n            \"middle_name\": \"\",\n            \"last_name\": \"White\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-11-25 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"8C485FEF-5BCF-4B86-BA24-793673BDCD40\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2025-05-21 12:04:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 22,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 40,\n            \"badge\": 69934396,\n            \"paylink\": \"819273\",\n            \"first_name\": \"Rajesh\",\n            \"middle_name\": \"Dempsey \",\n            \"last_name\": \"Patel\",\n            \"date_of_birth\": \"1997-01-20 00:00:00.000\",\n            \"date_started_with_company\": \"2025-01-01 00:00:00.000\",\n            \"address\": \"174 ActIn Time Road \\nHertford \\nSG14 1QZ\",\n            \"postcode\": \"SG14 1QZ\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"07754993021\",\n            \"e_mail\": \"\",\n            \"Sex\": \"Male\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"11243653\",\n            \"visa_number\": \"8898796\",\n            \"nok_name\": \"Emma Smith \",\n            \"nok_tel\": \"07854765947\",\n            \"bank_name\": \"Barclays \",\n            \"bank_address\": \"Barclays Bank\\n16-18 St Peter's St\\nSt Albans \\nAL1 3NA\",\n            \"bank_tel\": \"01274 843754\",\n            \"account_name\": \"Barclays Bank \",\n            \"account_number\": \"29564854\",\n            \"account_sort_code\": \"20-84-62\",\n            \"pension_name\": \"NEST \",\n            \"pension_number\": \"174935\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"2025-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \"5.0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"8BAA2A94-5570-4983-A57D-2FE688DEBCBB\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"email\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 1,\n                \"description\": \"Mr\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": 1,\n                \"description\": \"Married\"\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": 47,\n                \"description\": \"Turkish\"\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": 6,\n                \"description\": \"Father\"\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 5,\n                \"description\": \"08:00 - 17:00\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-14 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 41,\n            \"badge\": 73019482,\n            \"paylink\": \"205918\",\n            \"first_name\": \"Carlos\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Mendes\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2025-03-13 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"72ED692D-A9C4-4B86-A68B-73F0D5A47A92\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 8,\n                \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 42,\n            \"badge\": 20591837,\n            \"paylink\": \"736482\",\n            \"first_name\": \"Diego\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Herrera\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2025-09-05 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"35A7F4C2-E578-4521-8BC0-4EB26EA23F10\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 43,\n            \"badge\": 73648290,\n            \"paylink\": \"492018\",\n            \"first_name\": \"Fatima \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Zahra\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-03-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"74CE9ADC-EB02-4D10-8F03-89AC1FB2106A\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 8,\n                \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 44,\n            \"badge\": 49201865,\n            \"paylink\": \"851703\",\n            \"first_name\": \"Muhamed \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Hasa\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-03-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"6DF11B3B-7EBE-45A3-9B95-75F5E72BF433\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 14,\n                \"description\": \"On Probation Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 45,\n            \"badge\": 85170329,\n            \"paylink\": \"317594\",\n            \"first_name\": \"Viktor \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Novak\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2024-02-18 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"E2582598-BFB4-45EC-9D82-8D555ED3887C\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 46,\n            \"badge\": 31759480,\n            \"paylink\": \"926371\",\n            \"first_name\": \"Aisha\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Khan\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2025-04-05 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"C9B92633-8D28-4D03-8D9E-DE05E24E5D0F\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 5,\n                \"description\": \"08:00 - 17:00\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Demo PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,39,1,22,37,42\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 1\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 1\n                                },\n                                \"Rate\": {\n                                    \"value\": 1\n                                },\n                                \"Schedule\": {\n                                    \"value\": 1\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 1\n                                },\n                                \"Cost\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 1\n                                        },\n                                        \"value\": 1\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Delete\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 1\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 1\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 1\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 49,\n            \"badge\": 60918273,\n            \"paylink\": \"135098\",\n            \"first_name\": \"Omar\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Rahman\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-03-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"938F4E87-81C7-42B1-8C49-EDCDCB14F865\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 5,\n                \"description\": \"08:00 - 17:00\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 6,\n                \"code\": \"NOTT\",\n                \"description\": \"Nottingham\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 8,\n                \"code\": \"QUAL\",\n                \"description\": \"Quality Control\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 6,\n                \"code\": \"QASD\",\n                \"description\": \"Quality Assurance Director\",\n                \"colour\": \"rgb(196,255,206)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 50,\n            \"badge\": 74829305,\n            \"paylink\": \"864209\",\n            \"first_name\": \"Mason \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Mount \",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2025-06-09 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"821E326B-933F-4FEA-954C-58CD1E0908ED\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-06-01 07:49:12.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"In - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 1,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-14 12:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 51,\n            \"badge\": 92637184,\n            \"paylink\": \"273918\",\n            \"first_name\": \"Alec\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Kowalski\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2025-06-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"BF3DFB7D-57AF-4049-AFA2-8EE5F44D4132\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-06-01 08:16:17.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"In - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 1,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - London\",\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-02-10 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 52,\n            \"badge\": 13509827,\n            \"paylink\": \"590127\",\n            \"first_name\": \"Al \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Clark\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2025-07-10 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"FB382FED-9DC6-431B-9DD8-DC2D6B38118F\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 2,\n                \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-03-26 15:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 53,\n            \"badge\": 86420931,\n            \"paylink\": \"782360\",\n            \"first_name\": \"Gabriel\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Shaw\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-03-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"AA9D7AF9-F4BF-4F69-8565-0D5397C00B29\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 4,\n                \"description\": \"09:00-17:30 M-Th 17:00 Fr\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 9,\n                \"code\": \"CUST\",\n                \"description\": \"Customer Service\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 7,\n                \"code\": \"CUSM\",\n                \"description\": \"Customer Service Manager\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 54,\n            \"badge\": 27391840,\n            \"paylink\": \"418209\",\n            \"first_name\": \"Lisa\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Green\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-03-16 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"CB7AC2AC-24E7-4B91-A6B2-2B901959CB2A\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 5,\n                \"description\": \"08:00 - 17:00\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 5,\n                \"code\": \"BIRM\",\n                \"description\": \"Birmingham\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 55,\n            \"badge\": 59012738,\n            \"paylink\": \"960374\",\n            \"first_name\": \"Richard \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Knight \",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2020-06-24 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": \"1900-01-01 00:00:00.000\",\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"B9FD42BE-F8A3-4067-AD30-D8DA6D8281CA\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 7,\n                \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 5,\n                \"code\": \"MAND\",\n                \"description\": \"Managing Director\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2026-04-20 11:02:00.000\",\n                \"reader_direction\": 1,\n                \"terminal_id\": 1,\n                \"job_id\": 8,\n                \"operation_id\": 11,\n                \"job_description\": \"Chairs for AIT\",\n                \"operation_description\": \"Chair Arm\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 56,\n            \"badge\": 1271232,\n            \"paylink\": \"482719\",\n            \"first_name\": \"Jonathan\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Burrill\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-01-26 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"m.burrill@actintime.co.uk\",\n            \"Sex\": \"\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"E6FDAAC6-D3FE-43BC-9320-189339F4E6CE\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": -1,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 4,\n                \"description\": \"09:00-17:30 M-Th 17:00 Fr\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 1,\n                \"description\": \"Standard 28 Days (Jan - Dec)\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 5,\n                \"code\": \"WARE\",\n                \"description\": \"Warehouse\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": 1,\n                \"code\": \"PREC\",\n                \"description\": \"Precision Forge\",\n                \"colour\": \"rgb(227,162,255)\"\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 4,\n                \"code\": \"WARM\",\n                \"description\": \"Warehouse Manager\",\n                \"colour\": \"rgb(157,230,255)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": \"Standard PWA Policy\",\n                \"timezone\": \"Europe/London\",\n                \"terminal_ids\": \"35,1,22\",\n                \"terminal_id\": 1,\n                \"pwa_policy_polygon\": null,\n                \"data\": {\n                    \"Personnel\": {\n                        \"View\": {\n                            \"Address\": {\n                                \"value\": 1\n                            },\n                            \"Postcode\": {\n                                \"value\": 1\n                            },\n                            \"Telephone\": {\n                                \"value\": 1\n                            },\n                            \"Mobile\": {\n                                \"value\": 1\n                            },\n                            \"Email\": {\n                                \"value\": 1\n                            },\n                            \"Title\": {\n                                \"value\": 1\n                            },\n                            \"First name\": {\n                                \"value\": 1\n                            },\n                            \"Middle name\": {\n                                \"value\": 1\n                            },\n                            \"Last name\": {\n                                \"value\": 1\n                            },\n                            \"Date of birth\": {\n                                \"value\": 1\n                            },\n                            \"Gender\": {\n                                \"value\": 1\n                            },\n                            \"Marital status\": {\n                                \"value\": 1\n                            },\n                            \"Nationality\": {\n                                \"value\": 1\n                            },\n                            \"NI code\": {\n                                \"value\": 1\n                            },\n                            \"Passport number\": {\n                                \"value\": 1\n                            },\n                            \"Visa number\": {\n                                \"value\": 1\n                            },\n                            \"Employee ID\": {\n                                \"value\": 1\n                            },\n                            \"Badge number\": {\n                                \"value\": 1\n                            },\n                            \"Payroll number\": {\n                                \"value\": 1\n                            },\n                            \"Start date\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"NOK name\": {\n                                \"value\": 1\n                            },\n                            \"NOK telephone\": {\n                                \"value\": 1\n                            },\n                            \"NOK relationship\": {\n                                \"value\": 1\n                            },\n                            \"Bank name\": {\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Postcode\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Mobile\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Email\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Title\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"First name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Middle name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Last name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of birth\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Gender\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Marital status\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Nationality\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NI code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Passport number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Visa number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Badge number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Payroll number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start date\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 1\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK telephone\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"NOK relationship\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Bank address\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Telephone number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Account number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Sort code\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension name\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension number\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Pension details\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date of entry\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"AVC contribution\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Training\": {\n                            \"value\": 1\n                        },\n                        \"Accident\": {\n                            \"value\": 1\n                        },\n                        \"AddDocument\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewDocument\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 1\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddMessage\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewMessage\": {\n                            \"Distribution\": {\n                                \"value\": 0\n                            },\n                            \"Enforce priority order\": {\n                                \"value\": 0\n                            },\n                            \"Company\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"8\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"AddForm\": {\n                            \"Authorisation required\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"EditForm\": {\n                            \"Allow edit other\": {\n                                \"value\": 1\n                            },\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"ViewForm\": {\n                            \"Personnel\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"13\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"MarkSafe\": {\n                            \"value\": 0\n                        },\n                        \"Password\": {\n                            \"value\": 1\n                        },\n                        \"MFA\": {\n                            \"value\": 1\n                        },\n                        \"Passkey\": {\n                            \"value\": 0\n                        },\n                        \"Fingerprint\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Attendance\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 1\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"NFC booking\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Rates\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Costs\": {\n                                \"Rate 1\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 2\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 3\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 4\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 5\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 6\": {\n                                    \"value\": 1\n                                },\n                                \"Rate 7\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 8\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 9\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 10\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 11\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 12\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 13\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 14\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 15\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 16\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 17\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 18\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 19\": {\n                                    \"value\": 0\n                                },\n                                \"Rate 20\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Static registers\": {\n                                \"Static Register 1\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 2\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 3\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 4\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 5\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 6\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 7\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 8\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 9\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 10\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 11\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 12\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 13\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 14\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 15\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 16\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 17\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 18\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 19\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 20\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 21\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 22\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 23\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 24\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 25\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 26\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 27\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 28\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 29\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 30\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 31\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 32\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 33\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 34\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 35\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 36\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 37\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 38\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 39\": {\n                                    \"value\": 0\n                                },\n                                \"Static Register 40\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Flexitime\": {\n                                \"Opening balance\": {\n                                    \"value\": 0\n                                },\n                                \"Target\": {\n                                    \"value\": 0\n                                },\n                                \"Accumulated\": {\n                                    \"value\": 0\n                                },\n                                \"Closing balance\": {\n                                    \"value\": 0\n                                },\n                                \"Overspill\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Roster\": {\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 1\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Shift requests\": {\n                            \"Default schedules\": {\n                                \"value\": 0\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 0\n                            },\n                            \"Absences\": {\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Drop\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Swap\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Extra\": {\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Accept\": {\n                                \"value\": 1\n                            },\n                            \"Drop cancel\": {\n                                \"value\": 1\n                            },\n                            \"Swap cancel\": {\n                                \"value\": 1\n                            },\n                            \"Extra cancel\": {\n                                \"value\": 1\n                            },\n                            \"Accept cancel\": {\n                                \"value\": 1\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Absence\": {\n                        \"Absence\": {\n                            \"Restrict range\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Restrict duration\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"Required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Cancel absence\": {\n                            \"Approved\": {\n                                \"value\": 1\n                            },\n                            \"Block\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 1\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Time off\": {\n                            \"Anonymise names\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence colour\": {\n                                \"value\": 0\n                            },\n                            \"Hide absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 1\n                                },\n                                \"4\": {\n                                    \"value\": 1\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 1\n                                },\n                                \"8\": {\n                                    \"value\": 1\n                                },\n                                \"9\": {\n                                    \"value\": 1\n                                },\n                                \"10\": {\n                                    \"value\": 1\n                                },\n                                \"11\": {\n                                    \"value\": 1\n                                },\n                                \"12\": {\n                                    \"value\": 1\n                                },\n                                \"13\": {\n                                    \"value\": 1\n                                },\n                                \"14\": {\n                                    \"value\": 1\n                                },\n                                \"15\": {\n                                    \"value\": 1\n                                },\n                                \"16\": {\n                                    \"value\": 1\n                                },\n                                \"17\": {\n                                    \"value\": 1\n                                },\n                                \"18\": {\n                                    \"value\": 1\n                                },\n                                \"19\": {\n                                    \"value\": 1\n                                },\n                                \"20\": {\n                                    \"value\": 1\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 1\n                                },\n                                \"25\": {\n                                    \"value\": 1\n                                },\n                                \"26\": {\n                                    \"value\": 1\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 1\n                                },\n                                \"-2\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Anonymise absence reasons\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"14\": {\n                                    \"value\": 0\n                                },\n                                \"15\": {\n                                    \"value\": 0\n                                },\n                                \"16\": {\n                                    \"value\": 0\n                                },\n                                \"17\": {\n                                    \"value\": 0\n                                },\n                                \"18\": {\n                                    \"value\": 0\n                                },\n                                \"19\": {\n                                    \"value\": 0\n                                },\n                                \"20\": {\n                                    \"value\": 0\n                                },\n                                \"23\": {\n                                    \"value\": 0\n                                },\n                                \"24\": {\n                                    \"value\": 0\n                                },\n                                \"25\": {\n                                    \"value\": 0\n                                },\n                                \"26\": {\n                                    \"value\": 0\n                                },\n                                \"27\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Filter\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Job\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"value\": 1\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Job\": {\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"value\": 0\n                                },\n                                \"Client\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Job\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Operation\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"View assigned\": {\n                            \"value\": 1\n                        },\n                        \"View all\": {\n                            \"value\": 1\n                        },\n                        \"View\": {\n                            \"Summary\": {\n                                \"Job group\": {\n                                    \"value\": 0\n                                },\n                                \"Site name\": {\n                                    \"value\": 0\n                                },\n                                \"Site contact\": {\n                                    \"value\": 0\n                                },\n                                \"Site phone\": {\n                                    \"value\": 0\n                                },\n                                \"Site email\": {\n                                    \"value\": 0\n                                },\n                                \"Client name\": {\n                                    \"value\": 0\n                                },\n                                \"Client contact\": {\n                                    \"value\": 0\n                                },\n                                \"Client phone\": {\n                                    \"value\": 0\n                                },\n                                \"Client email\": {\n                                    \"value\": 0\n                                },\n                                \"Site address\": {\n                                    \"Include site name\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"13\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Assignees\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Parts\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"3\": {\n                                        \"value\": 0\n                                    },\n                                    \"4\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-10\": {\n                                        \"value\": 0\n                                    },\n                                    \"-13\": {\n                                        \"value\": 0\n                                    },\n                                    \"-2\": {\n                                        \"value\": 0\n                                    },\n                                    \"-3\": {\n                                        \"value\": 0\n                                    },\n                                    \"-12\": {\n                                        \"value\": 0\n                                    },\n                                    \"-4\": {\n                                        \"value\": 0\n                                    },\n                                    \"-7\": {\n                                        \"value\": 0\n                                    },\n                                    \"-6\": {\n                                        \"value\": 0\n                                    },\n                                    \"-5\": {\n                                        \"value\": 0\n                                    },\n                                    \"-1\": {\n                                        \"value\": 0\n                                    },\n                                    \"-11\": {\n                                        \"value\": 0\n                                    },\n                                    \"-8\": {\n                                        \"value\": 0\n                                    },\n                                    \"-9\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"Categories\": {\n                                    \"1\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"Categories\": {\n                                    \"2\": {\n                                        \"value\": 0\n                                    },\n                                    \"5\": {\n                                        \"value\": 0\n                                    },\n                                    \"6\": {\n                                        \"value\": 0\n                                    },\n                                    \"7\": {\n                                        \"value\": 0\n                                    },\n                                    \"9\": {\n                                        \"value\": 0\n                                    },\n                                    \"10\": {\n                                        \"value\": 0\n                                    },\n                                    \"11\": {\n                                        \"value\": 0\n                                    },\n                                    \"12\": {\n                                        \"value\": 0\n                                    },\n                                    \"13\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"Parts\": {\n                                \"value\": 0\n                            },\n                            \"Notes\": {\n                                \"value\": 0\n                            },\n                            \"Documents\": {\n                                \"value\": 0\n                            },\n                            \"Photos\": {\n                                \"value\": 0\n                            },\n                            \"Forms\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Allow complete\": {\n                            \"value\": 1\n                        },\n                        \"Allow undo complete\": {\n                            \"value\": 1\n                        },\n                        \"Employee signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Client signature\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"Unavailable\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Cost Centre\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Booking\": {\n                            \"Real time\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Missed booking\": {\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Comment required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo fencing\": {\n                                    \"value\": 0\n                                },\n                                \"Bluetooth required\": {\n                                    \"value\": 0\n                                },\n                                \"Specify terminal\": {\n                                    \"value\": 0\n                                },\n                                \"Flag as manual\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"Work\": {\n                                \"Swipes\": {\n                                    \"value\": 0\n                                },\n                                \"Cost Centre\": {\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"value\": 0\n                                },\n                                \"Schedule\": {\n                                    \"value\": 0\n                                },\n                                \"Anomaly\": {\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"Quantity\": {\n                                    \"value\": 0\n                                },\n                                \"Divider\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Daily\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Overall\": {\n                                \"Time\": {\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Add\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Edit\": {\n                                \"Cost Centre\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Rate\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Date\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Start time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Stop time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Time\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Cost\": {\n                                    \"Editable\": {\n                                        \"Required\": {\n                                            \"value\": 0\n                                        },\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Delete\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Manager\": {\n                        \"Calendar\": {\n                            \"Birthday\": {\n                                \"value\": 1\n                            },\n                            \"Period schedule\": {\n                                \"value\": 0\n                            },\n                            \"Default schedules\": {\n                                \"value\": 1\n                            },\n                            \"Rostered schedules\": {\n                                \"value\": 1\n                            },\n                            \"Absences\": {\n                                \"value\": 1\n                            },\n                            \"Tasks\": {\n                                \"value\": 0\n                            },\n                            \"Memo\": {\n                                \"value\": 0\n                            },\n                            \"Home groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cross groupings\": {\n                                \"Grouping 1\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 2\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 3\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 4\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 5\": {\n                                    \"value\": 1\n                                },\n                                \"Grouping 6\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 7\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 8\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 9\": {\n                                    \"value\": 0\n                                },\n                                \"Grouping 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"value\": 1\n                        },\n                        \"Emergency\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Terminal\": {\n                        \"Terminal\": {\n                            \"Disable\": {\n                                \"value\": 0\n                            },\n                            \"Autofocus\": {\n                                \"value\": 0\n                            },\n                            \"Attendance\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 1\n                                },\n                                \"value\": 1\n                            },\n                            \"Job Costing\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 1\n                                },\n                                \"Stop\": {\n                                    \"Job required\": {\n                                        \"value\": 0\n                                    },\n                                    \"Operation required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"Operation\": {\n                                    \"value\": 1\n                                },\n                                \"Quantity\": {\n                                    \"Allow zero\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Job bound\": {\n                                    \"value\": 0\n                                },\n                                \"Operation selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Operation bound\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Job match\": {\n                                    \"value\": 0\n                                },\n                                \"Operation match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Cost Centre\": {\n                                \"PIN\": {\n                                    \"value\": 0\n                                },\n                                \"Password\": {\n                                    \"value\": 0\n                                },\n                                \"Passkey\": {\n                                    \"value\": 0\n                                },\n                                \"Fingerprint\": {\n                                    \"value\": 0\n                                },\n                                \"Authorisation required\": {\n                                    \"value\": 0\n                                },\n                                \"Geo required\": {\n                                    \"value\": 0\n                                },\n                                \"Start\": {\n                                    \"value\": 0\n                                },\n                                \"Stop\": {\n                                    \"Cost centre required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"Employee selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre selectable\": {\n                                    \"value\": 0\n                                },\n                                \"Employee match\": {\n                                    \"value\": 0\n                                },\n                                \"Cost centre match\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    },\n                    \"Dashboard\": {\n                        \"Roll call\": {\n                            \"Unprocessed\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Jobs\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 1\n                        },\n                        \"Messages\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Summary\": {\n                            \"value\": 1\n                        },\n                        \"Flexitime\": {\n                            \"value\": 1\n                        },\n                        \"Entitlement\": {\n                            \"Categories\": {\n                                \"Absence Category 1\": {\n                                    \"value\": 1\n                                },\n                                \"Absence Category 2\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 3\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 4\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 5\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 6\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 7\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 8\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 9\": {\n                                    \"value\": 0\n                                },\n                                \"Absence Category 10\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Timesheet\": {\n                            \"value\": 1\n                        },\n                        \"value\": 0\n                    }\n                }\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-22 09:00:00.000\",\n                \"reader\": 1,\n                \"reader_direction\": null,\n                \"reader_description\": null,\n                \"terminal_id\": 2,\n                \"zone_id\": null,\n                \"terminal_description\": \"Employee Self Service\",\n                \"muster_point_enabled\": null,\n                \"zone_description\": null,\n                \"muster_point_id\": 2,\n                \"muster_point_description\": \"Car Park\",\n                \"muster_point_colour\": 255,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": \"2026-04-23 17:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 22,\n                \"job_id\": 8,\n                \"operation_id\": 10,\n                \"job_description\": \"Chairs for AIT\",\n                \"operation_description\": \"Chair Back\"\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": \"2026-03-26 15:00:00.000\",\n                \"reader_direction\": 2,\n                \"terminal_id\": 2,\n                \"cost_centre_id\": 11,\n                \"actual_rate\": 1,\n                \"cost_centre_description\": \"Salary\",\n                \"actual_rate_description\": \"Basic\"\n            }\n        },\n        {\n            \"employee_id\": 60,\n            \"badge\": 0,\n            \"paylink\": null,\n            \"first_name\": \"Daniel\",\n            \"middle_name\": null,\n            \"last_name\": \"Cooper\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": null,\n            \"address\": null,\n            \"postcode\": null,\n            \"home_tel\": null,\n            \"mobile_tel\": null,\n            \"e_mail\": \"d.cooper@actintime.co.uk\",\n            \"Sex\": null,\n            \"ni_code\": null,\n            \"passport_number\": null,\n            \"visa_number\": null,\n            \"nok_name\": null,\n            \"nok_tel\": null,\n            \"bank_name\": null,\n            \"bank_address\": null,\n            \"bank_tel\": null,\n            \"account_name\": null,\n            \"account_number\": null,\n            \"account_sort_code\": null,\n            \"pension_name\": null,\n            \"pension_number\": null,\n            \"pension_details\": null,\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": null,\n            \"employee_guid\": \"9E5199EB-5E1C-4E13-A3CD-13770CC4EDB8\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": null,\n            \"mfa_enabled\": null,\n            \"mfa_method\": null,\n            \"passkey_enabled\": null,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 12,\n                \"description\": \"Visitor\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": null,\n                \"description\": null\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": null,\n                \"description\": null\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-26 11:38:48.000\",\n                \"reader\": 2,\n                \"reader_direction\": 2,\n                \"reader_description\": \"Off Site - London Site\",\n                \"terminal_id\": 5,\n                \"zone_id\": 2,\n                \"terminal_description\": \"London Site Visitor Kiosk\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"Off Site - London\",\n                \"muster_point_id\": 4,\n                \"muster_point_description\": \"Visitor Muster Point\",\n                \"muster_point_colour\": 915666,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 61,\n            \"badge\": 0,\n            \"paylink\": null,\n            \"first_name\": \"Joe\",\n            \"middle_name\": null,\n            \"last_name\": \"Bloggs\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": null,\n            \"address\": null,\n            \"postcode\": null,\n            \"home_tel\": null,\n            \"mobile_tel\": null,\n            \"e_mail\": \"\",\n            \"Sex\": null,\n            \"ni_code\": null,\n            \"passport_number\": null,\n            \"visa_number\": null,\n            \"nok_name\": null,\n            \"nok_tel\": null,\n            \"bank_name\": null,\n            \"bank_address\": null,\n            \"bank_tel\": null,\n            \"account_name\": null,\n            \"account_number\": null,\n            \"account_sort_code\": null,\n            \"pension_name\": null,\n            \"pension_number\": null,\n            \"pension_details\": null,\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": null,\n            \"employee_guid\": \"41205E4C-B5B3-4355-B245-B5BD9DF878FE\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": null,\n            \"mfa_enabled\": null,\n            \"mfa_method\": null,\n            \"passkey_enabled\": null,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": null,\n                \"description\": null\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 12,\n                \"description\": \"Visitor\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": null,\n                \"description\": null\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": null,\n                \"description\": null\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-18 15:56:31.000\",\n                \"reader\": 1,\n                \"reader_direction\": 1,\n                \"reader_description\": \"On Site - PWA\",\n                \"terminal_id\": 1,\n                \"zone_id\": 3,\n                \"terminal_description\": \"GPS Device\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"On Site - PWA\",\n                \"muster_point_id\": 4,\n                \"muster_point_description\": \"Visitor Muster Point\",\n                \"muster_point_colour\": 915666,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        },\n        {\n            \"employee_id\": 62,\n            \"badge\": null,\n            \"paylink\": \"\",\n            \"first_name\": \"Bev \",\n            \"middle_name\": \"\",\n            \"last_name\": \"Bovrilson\",\n            \"date_of_birth\": null,\n            \"date_started_with_company\": \"2026-05-22 00:00:00.000\",\n            \"address\": \"\",\n            \"postcode\": \"\",\n            \"home_tel\": \"\",\n            \"mobile_tel\": \"\",\n            \"e_mail\": \"\",\n            \"Sex\": \"Female\",\n            \"ni_code\": \"\",\n            \"passport_number\": \"\",\n            \"visa_number\": \"\",\n            \"nok_name\": \"\",\n            \"nok_tel\": \"\",\n            \"bank_name\": \"\",\n            \"bank_address\": \"\",\n            \"bank_tel\": \"\",\n            \"account_name\": \"\",\n            \"account_number\": \"\",\n            \"account_sort_code\": \"\",\n            \"pension_name\": \"\",\n            \"pension_number\": \"\",\n            \"pension_details\": \"\",\n            \"pension_date_of_entry\": null,\n            \"pension_voluntary_contribution\": \".0000\",\n            \"vehicle_registration_number\": \"\",\n            \"employee_guid\": \"9A58D308-D0A2-44FD-B811-821E07BE2F18\",\n            \"job_id\": null,\n            \"operation_id\": null,\n            \"cost_centre_id\": null,\n            \"mfa_enabled\": 0,\n            \"mfa_method\": \"\",\n            \"passkey_enabled\": 0,\n            \"employee_is_user_id\": null,\n            \"zone_ids\": null,\n            \"total_records\": 53,\n            \"employee_title\": {\n                \"employee_title_id\": 2,\n                \"description\": \"Miss\"\n            },\n            \"employee_marital_status\": {\n                \"employee_marital_status_id\": null,\n                \"description\": null\n            },\n            \"employee_nationality\": {\n                \"employee_nationality_id\": null,\n                \"description\": null\n            },\n            \"employee_relationships\": {\n                \"employee_relationships_id\": null,\n                \"description\": null\n            },\n            \"employee_status\": {\n                \"employee_status_id\": 7,\n                \"description\": \"Full Time Employee\"\n            },\n            \"period_schedule\": {\n                \"period_schedule_id\": 4,\n                \"description\": \"09:00-17:30 M-Th 17:00 Fr\"\n            },\n            \"absence_entitlement\": {\n                \"absence_entitlement_id\": 3,\n                \"description\": \"22 Days Jan-Dec Absence Entitlement\"\n            },\n            \"company_grouping_01\": {\n                \"company_grouping_01_id\": 9,\n                \"code\": \"LOND\",\n                \"description\": \"London\",\n                \"colour\": \"rgb(255,212,160)\"\n            },\n            \"company_grouping_02\": {\n                \"company_grouping_02_id\": 6,\n                \"code\": \"FINA\",\n                \"description\": \"Finance\",\n                \"colour\": \"rgb(255,193,117)\"\n            },\n            \"company_grouping_03\": {\n                \"company_grouping_03_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_04\": {\n                \"company_grouping_04_id\": 4,\n                \"code\": \"SALA\",\n                \"description\": \"Salary\",\n                \"colour\": \"rgb(191,191,255)\"\n            },\n            \"company_grouping_05\": {\n                \"company_grouping_05_id\": 3,\n                \"code\": \"FINM\",\n                \"description\": \"Finance Manager\",\n                \"colour\": \"rgb(255,168,185)\"\n            },\n            \"company_grouping_06\": {\n                \"company_grouping_06_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_07\": {\n                \"company_grouping_07_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_08\": {\n                \"company_grouping_08_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_09\": {\n                \"company_grouping_09_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"company_grouping_10\": {\n                \"company_grouping_10_id\": null,\n                \"code\": null,\n                \"description\": null,\n                \"colour\": null\n            },\n            \"pwa_policy\": {\n                \"description\": null,\n                \"timezone\": null,\n                \"terminal_ids\": null,\n                \"terminal_id\": null,\n                \"pwa_policy_polygon\": null,\n                \"data\": []\n            },\n            \"employee_roll_call\": {\n                \"date_and_time\": \"2026-05-29 16:56:11.000\",\n                \"reader\": 2,\n                \"reader_direction\": 2,\n                \"reader_description\": \"Out - London Site\",\n                \"terminal_id\": 22,\n                \"zone_id\": 2,\n                \"terminal_description\": \"London Site\",\n                \"muster_point_enabled\": 1,\n                \"zone_description\": \"Off Site - London\",\n                \"muster_point_id\": null,\n                \"muster_point_description\": null,\n                \"muster_point_colour\": null,\n                \"muster_point_polygon\": null,\n                \"emergency_safe_id\": null,\n                \"emergency_safe_date_and_time\": null,\n                \"emergency_safe_muster_point_id\": null,\n                \"emergency_safe_muster_point_description\": null,\n                \"emergency_safe_latitude\": null,\n                \"emergency_safe_longitude\": null,\n                \"emergency_safe_in_muster_point\": null,\n                \"emergency_safe_in_muster_point_tolerance\": null,\n                \"emergency_safe_muster_point_tolerance\": null\n            },\n            \"employee_roll_call_job\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"job_id\": null,\n                \"operation_id\": null,\n                \"job_description\": null,\n                \"operation_description\": null\n            },\n            \"employee_roll_call_cost_centre\": {\n                \"date_and_time\": null,\n                \"reader_direction\": null,\n                \"terminal_id\": null,\n                \"cost_centre_id\": null,\n                \"actual_rate\": null,\n                \"cost_centre_description\": null,\n                \"actual_rate_description\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"7d2a8acb-f683-400c-8088-267e308c5dde"},{"name":"Add Employee","id":"e553cf0a-105b-4646-9525-19cd96292457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"first_name","value":"Joe","type":"text"},{"key":"last_name","value":"Bloggs","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employees","description":"<p>Adds a new employee into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employees"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e553cf0a-105b-4646-9525-19cd96292457"},{"name":"Update Employee","id":"a6f5e8eb-06e1-498c-9b90-3d33eda1ff01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"first_name","value":"Mary","type":"text"},{"key":"last_name","value":"Hare","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employees/189","description":"<p>Update an existing employee in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employees","189"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6f5e8eb-06e1-498c-9b90-3d33eda1ff01"},{"name":"Delete Employee","id":"7e860055-4d20-4b53-83a7-63bf5dfa309d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employees/999","description":"<p>Deletes a single employee from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employees","999"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e860055-4d20-4b53-83a7-63bf5dfa309d"}],"id":"0f0773c9-8cb0-4c2b-8cd5-5d59492f3a9e","_postman_id":"0f0773c9-8cb0-4c2b-8cd5-5d59492f3a9e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Accident Reason","item":[{"name":"Get Employee Accident Reason","id":"db23d68b-5c9c-4ae1-8568-2e60b6122a56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accident-reasons/3","description":"<p>Gets a single accident for an employee record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accident-reasons","3"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"a911e779-a87d-49b2-9e5e-cc3778f3d55a","name":"Get Employee Accident Reason","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accident-reasons/3"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:47:32 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"108"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_accident_ref_id\": 3,\n            \"description\": \"Manual Handling Injuries\"\n        }\n    ]\n}"}],"_postman_id":"db23d68b-5c9c-4ae1-8568-2e60b6122a56"},{"name":"Get Employee Accident Reasons","id":"f0b6d88d-77f5-4a53-95ce-1c8317f1962e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accident-reasons","description":"<p>Gets the list of accident reasons.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accident-reasons"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"1d6ed20e-622e-4e39-89de-deb598e414c2","name":"Get Employee Accident Reasons","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accident-reasons"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:47:17 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"679"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_accident_ref_id\": 1,\n            \"description\": \"Faulty Equipment Injuries\"\n        },\n        {\n            \"employee_accident_ref_id\": 2,\n            \"description\": \"Slip, Trip, Falls\"\n        },\n        {\n            \"employee_accident_ref_id\": 3,\n            \"description\": \"Manual Handling Injuries\"\n        },\n        {\n            \"employee_accident_ref_id\": 4,\n            \"description\": \"Exposure to Hazardous Substances\"\n        },\n        {\n            \"employee_accident_ref_id\": 5,\n            \"description\": \"Electrical Incidents\"\n        },\n        {\n            \"employee_accident_ref_id\": 6,\n            \"description\": \"Repetitive Strain Injuries (RSI)\"\n        },\n        {\n            \"employee_accident_ref_id\": 7,\n            \"description\": \"Cuts and Lacerations\"\n        },\n        {\n            \"employee_accident_ref_id\": 8,\n            \"description\": \"Burns (Thermal or Chemical)\"\n        },\n        {\n            \"employee_accident_ref_id\": 9,\n            \"description\": \"Minor Injuries\"\n        }\n    ]\n}"}],"_postman_id":"f0b6d88d-77f5-4a53-95ce-1c8317f1962e"},{"name":"Add Employee Accident Reason","id":"c0c077e5-c314-49cd-af1b-2cb44d9b6074","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Reason","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accident-reasons","description":"<p>Adds a new accident reason into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accident-reasons"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0c077e5-c314-49cd-af1b-2cb44d9b6074"},{"name":"Update Employee Accident Reason","id":"ccfee562-46c6-46b2-9623-b7367458f77b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Updated Reason","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accident-reasons/3","description":"<p>Update an existing accident reason in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accident-reasons","3"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"ccfee562-46c6-46b2-9623-b7367458f77b"},{"name":"Delete Employee Accident Reason","id":"04d604ed-7f9e-428e-ac78-9937ba394b4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-accidents/2","description":"<p>Deletes a single accident reason from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-accidents","2"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"04d604ed-7f9e-428e-ac78-9937ba394b4f"}],"id":"b9909c47-5c50-4830-97b8-c5e24c374873","_postman_id":"b9909c47-5c50-4830-97b8-c5e24c374873","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Document","item":[{"name":"Get Employee Document","id":"ca8351cc-d6bb-47d7-98ff-34b8b4f7aaa0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-documents/10","description":"<p>Gets a single personnel document from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-documents","10"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca8351cc-d6bb-47d7-98ff-34b8b4f7aaa0"},{"name":"Get Employee Documents","id":"300015f2-6101-47aa-a564-d9b99a374e16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-documents","description":"<p>Get a list of personnel documents in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-documents"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"300015f2-6101-47aa-a564-d9b99a374e16"},{"name":"Add Employee Document","id":"9f8528f1-1282-477c-97dc-b12ed46c7fad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"description","value":"New personel document","type":"text"},{"key":"document_ref_id","value":"1","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"data","value":"{uploaded file}","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-documents","description":"<p>Adds a new document to a personnel record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-documents"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f8528f1-1282-477c-97dc-b12ed46c7fad"},{"name":"Delete Employee Document","id":"138bc07c-66fd-4877-a201-d56d9663d516","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-documents/100","description":"<p>Deletes a single personnel document from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-documents","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"138bc07c-66fd-4877-a201-d56d9663d516"}],"id":"fdf863ef-a926-436b-a9e9-6e973549e92f","_postman_id":"fdf863ef-a926-436b-a9e9-6e973549e92f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Document Meta","item":[{"name":"Update Employee Document Meta","id":"1d9065b3-ff4b-4353-a1a9-f748f9061197","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"188","type":"text"},{"key":"document_type","value":"personnel-document","type":"text"},{"key":"company_document_id","value":"0","type":"text"},{"key":"employee_document_id","value":"100","type":"text"},{"key":"action","value":"read","type":"text"},{"key":"is_read","value":"1","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-document-meta","description":"<p>This endpoint can be used to update document meta data for a particular employee. The meta data \"action\" can be read, accept or signature. \"document_type\" should be \"company-document\" or \"personnel-document\". Generally this API endpoint will call the onPWAServerEmployeeDocumentMetaUpdated when meta data is successfully updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-document-meta"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d9065b3-ff4b-4353-a1a9-f748f9061197"}],"id":"8f23f015-df4f-4e9a-a37e-25af5b169b71","_postman_id":"8f23f015-df4f-4e9a-a37e-25af5b169b71","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Form File","item":[{"name":"Delete Employee Form File","id":"168acfa2-6aba-461c-9524-58282dfc53e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-form-file/55","description":"<p>This endpoint can be used to delete files associated with a personnel form.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-form-file","55"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"168acfa2-6aba-461c-9524-58282dfc53e0"}],"id":"6ecf7263-41df-4a50-bd0d-6f6d1fd034ba","_postman_id":"6ecf7263-41df-4a50-bd0d-6f6d1fd034ba","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Marital Status","item":[{"name":"Get Employee Marital Status","id":"b767171e-c304-41f8-ba76-11ba13953119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-marital-statuses/1","description":"<p>Gets a single marital status record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-marital-statuses","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"1a8ca916-ad72-4c5c-bf8c-070024eb3b0b","name":"Get Employee Marital Status","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-marital-statuses/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:50:25 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"93"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_marital_status_id\": 1,\n            \"description\": \"Married\"\n        }\n    ]\n}"}],"_postman_id":"b767171e-c304-41f8-ba76-11ba13953119"},{"name":"Get Employee Marital Statuses","id":"899b1eb2-d13c-4bdc-885b-958bb8de51a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-marital-statuses","description":"<p>Gets the list of marital statuses.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-marital-statuses"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"13445fcc-57a5-40eb-a60b-1ae706571ab2","name":"Get Employee Marital Statuses","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-marital-statuses"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:49:48 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"390"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_marital_status_id\": 1,\n            \"description\": \"Married\"\n        },\n        {\n            \"employee_marital_status_id\": 2,\n            \"description\": \"Single\"\n        },\n        {\n            \"employee_marital_status_id\": 3,\n            \"description\": \"Divorced\"\n        },\n        {\n            \"employee_marital_status_id\": 4,\n            \"description\": \"Separated\"\n        },\n        {\n            \"employee_marital_status_id\": 5,\n            \"description\": \"Civil Partnership\"\n        },\n        {\n            \"employee_marital_status_id\": 6,\n            \"description\": \"Widowed\"\n        }\n    ]\n}"}],"_postman_id":"899b1eb2-d13c-4bdc-885b-958bb8de51a1"},{"name":"Add Employee Marital Status","id":"22508044-4791-4106-9391-f9df4e4d957c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Status","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-marital-statuses","description":"<p>Adds a new marital status into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-marital-statuses"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"22508044-4791-4106-9391-f9df4e4d957c"},{"name":"Update Employee Marital Status","id":"8dfa0703-059f-478c-9004-c4a0f32fbec1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Updated Status","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-marital-statuses/12","description":"<p>Update an existing marital status in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-marital-statuses","12"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"8dfa0703-059f-478c-9004-c4a0f32fbec1"},{"name":"Delete Employee Marital Status","id":"a8cd0b22-fd42-4b35-b86c-0ea9bab52c91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-marital-statuses/12","description":"<p>Deletes a single marital status from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-marital-statuses","12"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8cd0b22-fd42-4b35-b86c-0ea9bab52c91"}],"id":"7c0edf11-4731-48c3-b040-7e74db5279c6","_postman_id":"7c0edf11-4731-48c3-b040-7e74db5279c6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Message","item":[{"name":"Get Employee Message","id":"0c470ab2-60c7-43b8-9192-986d93fbafc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-messages/26","description":"<p>Gets a single personnel message from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-messages","26"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c470ab2-60c7-43b8-9192-986d93fbafc0"},{"name":"Get Employee Messages","id":"cb0ab96c-b9b9-498c-9dd6-43ceeaafff01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-messages","description":"<p>Get a list of personnel messages in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-messages"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb0ab96c-b9b9-498c-9dd6-43ceeaafff01"},{"name":"Add Employee Message","id":"84a73f4e-3abf-4fcd-a776-830053f05fa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"description","value":"New personel message","type":"text"},{"key":"message_ref_id","value":"1","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"data","value":"New personnel message content","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-messages","description":"<p>Adds a new message to a personnel record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-messages"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"84a73f4e-3abf-4fcd-a776-830053f05fa9"},{"name":"Delete Employee Message","id":"d31d0c45-c783-4e98-a99a-918cac0cfa0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-messages/100","description":"<p>Deletes a single personnel message from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-messages","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"d31d0c45-c783-4e98-a99a-918cac0cfa0d"}],"id":"ded51a52-10b2-4a8a-be53-3eb470d94e2b","_postman_id":"ded51a52-10b2-4a8a-be53-3eb470d94e2b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Message Meta","item":[{"name":"Update Employee Message Meta","id":"5b4d8666-76f2-4f6a-8cbd-c843eb1b511e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"188","type":"text"},{"key":"message_type","value":"personnel-message","type":"text"},{"key":"company_message_id","value":"0","type":"text"},{"key":"employee_message_id","value":"100","type":"text"},{"key":"action","value":"accept","type":"text"},{"key":"is_accept","value":"1","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-message-meta","description":"<p>This endpoint can be used to update message meta data for a particular employee. The meta data \"action\" can be read, accept or signature. \"mesage_type\" should be \"company-message\" or \"personnel-message\". Generally this API endpoint will call the onPWAServerEmployeeMessageMetaUpdated when meta data is successfully updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-message-meta"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b4d8666-76f2-4f6a-8cbd-c843eb1b511e"}],"id":"0375cb88-ef6c-4e77-be42-25bb6fe8386f","_postman_id":"0375cb88-ef6c-4e77-be42-25bb6fe8386f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Nationality","item":[{"name":"Get Employee Nationality","id":"3ef2a876-5699-42e4-8630-799e3a72b43d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-nationalities/1","description":"<p>Gets a single nationality record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-nationalities","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"53ec5fd8-f400-43ad-a8be-7714dd47207e","name":"Get Employee Nationality","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-nationalities/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:51:28 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"90"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_nationality_id\": 1,\n            \"description\": \"British\"\n        }\n    ]\n}"}],"_postman_id":"3ef2a876-5699-42e4-8630-799e3a72b43d"},{"name":"Get Employee Nationalities","id":"4dff1a4b-84b6-4502-8c89-f73097da2b28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-nationalities","description":"<p>Gets the list of nationalities.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-nationalities"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"c35a4412-1df6-4f06-8f7f-cc66acd44a61","name":"Get Employee Nationalities","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-nationalities"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:51:10 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"2692"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_nationality_id\": 1,\n            \"description\": \"British\"\n        },\n        {\n            \"employee_nationality_id\": 2,\n            \"description\": \"American\"\n        },\n        {\n            \"employee_nationality_id\": 3,\n            \"description\": \"Australian\"\n        },\n        {\n            \"employee_nationality_id\": 4,\n            \"description\": \"Asian\"\n        },\n        {\n            \"employee_nationality_id\": 5,\n            \"description\": \"African\"\n        },\n        {\n            \"employee_nationality_id\": 6,\n            \"description\": \"French\"\n        },\n        {\n            \"employee_nationality_id\": 7,\n            \"description\": \"Dutch\"\n        },\n        {\n            \"employee_nationality_id\": 8,\n            \"description\": \"Bangladeshi\"\n        },\n        {\n            \"employee_nationality_id\": 9,\n            \"description\": \"Belgian\"\n        },\n        {\n            \"employee_nationality_id\": 10,\n            \"description\": \"Brazilian\"\n        },\n        {\n            \"employee_nationality_id\": 11,\n            \"description\": \"Bulgarian\"\n        },\n        {\n            \"employee_nationality_id\": 12,\n            \"description\": \"Canadian\"\n        },\n        {\n            \"employee_nationality_id\": 13,\n            \"description\": \"Chinese\"\n        },\n        {\n            \"employee_nationality_id\": 14,\n            \"description\": \"Croatian\"\n        },\n        {\n            \"employee_nationality_id\": 15,\n            \"description\": \"Cypriot\"\n        },\n        {\n            \"employee_nationality_id\": 16,\n            \"description\": \"Czech\"\n        },\n        {\n            \"employee_nationality_id\": 17,\n            \"description\": \"Danish\"\n        },\n        {\n            \"employee_nationality_id\": 19,\n            \"description\": \"Egyptian\"\n        },\n        {\n            \"employee_nationality_id\": 20,\n            \"description\": \"Finnish\"\n        },\n        {\n            \"employee_nationality_id\": 21,\n            \"description\": \"Georgian\"\n        },\n        {\n            \"employee_nationality_id\": 22,\n            \"description\": \"German\"\n        },\n        {\n            \"employee_nationality_id\": 23,\n            \"description\": \"Greek\"\n        },\n        {\n            \"employee_nationality_id\": 24,\n            \"description\": \"Icelander\"\n        },\n        {\n            \"employee_nationality_id\": 25,\n            \"description\": \"Indian\"\n        },\n        {\n            \"employee_nationality_id\": 26,\n            \"description\": \"Irish\"\n        },\n        {\n            \"employee_nationality_id\": 27,\n            \"description\": \"Italian\"\n        },\n        {\n            \"employee_nationality_id\": 28,\n            \"description\": \"Japanese\"\n        },\n        {\n            \"employee_nationality_id\": 29,\n            \"description\": \"Latvian\"\n        },\n        {\n            \"employee_nationality_id\": 30,\n            \"description\": \"Lithuanian\"\n        },\n        {\n            \"employee_nationality_id\": 31,\n            \"description\": \"Luxembourger\"\n        },\n        {\n            \"employee_nationality_id\": 32,\n            \"description\": \"Macedonian\"\n        },\n        {\n            \"employee_nationality_id\": 33,\n            \"description\": \"Maltese\"\n        },\n        {\n            \"employee_nationality_id\": 34,\n            \"description\": \"Moroccan\"\n        },\n        {\n            \"employee_nationality_id\": 35,\n            \"description\": \"Northern Irish\"\n        },\n        {\n            \"employee_nationality_id\": 36,\n            \"description\": \"Pakistani\"\n        },\n        {\n            \"employee_nationality_id\": 37,\n            \"description\": \"Polish\"\n        },\n        {\n            \"employee_nationality_id\": 38,\n            \"description\": \"Portuguese\"\n        },\n        {\n            \"employee_nationality_id\": 39,\n            \"description\": \"Romanian\"\n        },\n        {\n            \"employee_nationality_id\": 40,\n            \"description\": \"Russian\"\n        },\n        {\n            \"employee_nationality_id\": 41,\n            \"description\": \"Scottish\"\n        },\n        {\n            \"employee_nationality_id\": 42,\n            \"description\": \"Slovakian\"\n        },\n        {\n            \"employee_nationality_id\": 43,\n            \"description\": \"Spanish\"\n        },\n        {\n            \"employee_nationality_id\": 44,\n            \"description\": \"Swedish\"\n        },\n        {\n            \"employee_nationality_id\": 45,\n            \"description\": \"Swiss\"\n        },\n        {\n            \"employee_nationality_id\": 46,\n            \"description\": \"Thai\"\n        },\n        {\n            \"employee_nationality_id\": 47,\n            \"description\": \"Turkish\"\n        },\n        {\n            \"employee_nationality_id\": 48,\n            \"description\": \"Welsh\"\n        },\n        {\n            \"employee_nationality_id\": 49,\n            \"description\": \"English\"\n        }\n    ]\n}"}],"_postman_id":"4dff1a4b-84b6-4502-8c89-f73097da2b28"},{"name":"Add Employee Nationality","id":"08deb4a9-4d34-4438-bbd6-4d6c0a5994b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Nationality","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-nationalities","description":"<p>Adds a new nationality into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-nationalities"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"08deb4a9-4d34-4438-bbd6-4d6c0a5994b9"},{"name":"Update Employee Nationality","id":"801028e9-c732-4387-af3b-eccf2ebd4d5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Updated Nationality","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-nationalities/53","description":"<p>Update an existing nationality in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-nationalities","53"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"801028e9-c732-4387-af3b-eccf2ebd4d5e"},{"name":"Delete Employee Nationality","id":"0d541eeb-7ba5-4c21-ba0b-71273fce871a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-nationalities/53","description":"<p>Deletes a single nationality from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-nationalities","53"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d541eeb-7ba5-4c21-ba0b-71273fce871a"}],"id":"e4df059f-0a9f-46a2-b081-eae506c9f9a2","_postman_id":"e4df059f-0a9f-46a2-b081-eae506c9f9a2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Relationship","item":[{"name":"Get Employee Relationship","id":"7a223034-c7a9-481c-92fd-d1f54be03716","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-relationships/11","description":"<p>Gets a single relationship record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-relationships","11"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"872af58e-32d7-4ec5-9302-d3adeab9525b","name":"Get Employee Relationship","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-relationships/11"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:52:01 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"90"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_relationships_id\": 11,\n            \"description\": \"Wife\"\n        }\n    ]\n}"}],"_postman_id":"7a223034-c7a9-481c-92fd-d1f54be03716"},{"name":"Get Employee Relationships","id":"7e14fe0c-a086-4645-a28e-86563d7b5347","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-relationships","description":"<p>Gets the list of relationships.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-relationships"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"0035ad4e-79fa-425b-92ba-aa1b8ec39d0d","name":"Get Employee Relationships","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-relationships"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:51:52 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"883"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_relationships_id\": 1,\n            \"description\": \"Mother\"\n        },\n        {\n            \"employee_relationships_id\": 2,\n            \"description\": \"Brother\"\n        },\n        {\n            \"employee_relationships_id\": 3,\n            \"description\": \"Sister\"\n        },\n        {\n            \"employee_relationships_id\": 4,\n            \"description\": \"Aunt\"\n        },\n        {\n            \"employee_relationships_id\": 5,\n            \"description\": \"Uncle\"\n        },\n        {\n            \"employee_relationships_id\": 6,\n            \"description\": \"Father\"\n        },\n        {\n            \"employee_relationships_id\": 8,\n            \"description\": \"Daughter\"\n        },\n        {\n            \"employee_relationships_id\": 9,\n            \"description\": \"Son\"\n        },\n        {\n            \"employee_relationships_id\": 11,\n            \"description\": \"Wife\"\n        },\n        {\n            \"employee_relationships_id\": 12,\n            \"description\": \"Husband\"\n        },\n        {\n            \"employee_relationships_id\": 13,\n            \"description\": \"Grandfather\"\n        },\n        {\n            \"employee_relationships_id\": 14,\n            \"description\": \"Grandmother\"\n        },\n        {\n            \"employee_relationships_id\": 15,\n            \"description\": \"Granddaughter\"\n        },\n        {\n            \"employee_relationships_id\": 16,\n            \"description\": \"Grandson\"\n        },\n        {\n            \"employee_relationships_id\": 17,\n            \"description\": \"Cousin\"\n        }\n    ]\n}"}],"_postman_id":"7e14fe0c-a086-4645-a28e-86563d7b5347"},{"name":"Add Employee Relationship","id":"b986f86b-6bc7-408c-a99c-25a8486556df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Relationship","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-relationships","description":"<p>Adds a new relationship into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-relationships"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"b986f86b-6bc7-408c-a99c-25a8486556df"},{"name":"Update Employee Relationship","id":"7b2f96e7-5603-472a-8bb1-fb8a006c93ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Updated Relationship","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-relationships/11","description":"<p>Update an existing relationship in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-relationships","11"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b2f96e7-5603-472a-8bb1-fb8a006c93ce"},{"name":"Delete Employee Relationship","id":"d8d233bb-0a04-4293-9638-1e80fe72264c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-relationships/11","description":"<p>Deletes a single relationship from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-relationships","11"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8d233bb-0a04-4293-9638-1e80fe72264c"}],"id":"90fcd418-2b11-461c-9acc-31377adea052","_postman_id":"90fcd418-2b11-461c-9acc-31377adea052","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Employee Title","item":[{"name":"Get Employee Title","id":"74f6ace0-f86f-4984-8bad-cc805f043396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-titles/1","description":"<p>Gets a single title record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-titles","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"b4eb20d0-e052-445a-b1f8-5007a97d544d","name":"Get Employee Title","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-titles/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:52:38 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"79"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_title_id\": 1,\n            \"description\": \"Mr\"\n        }\n    ]\n}"}],"_postman_id":"74f6ace0-f86f-4984-8bad-cc805f043396"},{"name":"Get Employee Titles","id":"8a8df8ed-59c8-4be7-a087-11ffffd3a56b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-titles","description":"<p>Gets the list of titles.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-titles"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"18fd6b29-5fb7-44fe-8cf0-1bf5d3728917","name":"Get Employee Titles","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-titles"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:52:20 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"343"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_title_id\": 1,\n            \"description\": \"Mr\"\n        },\n        {\n            \"employee_title_id\": 2,\n            \"description\": \"Miss\"\n        },\n        {\n            \"employee_title_id\": 3,\n            \"description\": \"Mrs\"\n        },\n        {\n            \"employee_title_id\": 4,\n            \"description\": \"Dr\"\n        },\n        {\n            \"employee_title_id\": 5,\n            \"description\": \"Sir\"\n        },\n        {\n            \"employee_title_id\": 6,\n            \"description\": \"Ms\"\n        },\n        {\n            \"employee_title_id\": 7,\n            \"description\": \"Prof\"\n        }\n    ]\n}"}],"_postman_id":"8a8df8ed-59c8-4be7-a087-11ffffd3a56b"},{"name":"Add Employee Title","id":"36cdd5e7-124c-48d7-aa60-293d207d02db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Title","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-titles","description":"<p>Adds a new title into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-titles"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"36cdd5e7-124c-48d7-aa60-293d207d02db"},{"name":"Update Employee Title","id":"91b744a8-dd99-4617-b2c6-927ecab587a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Updated Title","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-titles/14","description":"<p>Update an existing title in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-titles","14"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"91b744a8-dd99-4617-b2c6-927ecab587a2"},{"name":"Delete Employee Title","id":"c32f2523-4031-4a46-a45d-22436ee0e7f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/employee-titles/14","description":"<p>Deletes a single title from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["employee-titles","14"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c32f2523-4031-4a46-a45d-22436ee0e7f1"}],"id":"9fbb73b4-b9a1-4df1-ab3b-ccc1166e3322","_postman_id":"9fbb73b4-b9a1-4df1-ab3b-ccc1166e3322","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Fingerprint","item":[{"name":"Update Fingerprint Registration","id":"cda8e591-1239-47da-80d5-4ed27b8ffb4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"action","value":"register|identify|list|remove","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/fingerprint","description":"<p>Manages fingerprint registrations in the system. This endpoint can be used to create new fingerprint registrations and verify existing fingerprint registrations as well as deleting fingerprint registrations and retrieving a list of fingerprint registrations in an appropriate format. Please refer to the [action] parameter for more information on the capabilities of this endpoint. Please note that PHP 8.3 is required for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["fingerprint"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"cda8e591-1239-47da-80d5-4ed27b8ffb4b"}],"id":"510da012-b76e-4a0e-9b85-24b7c5230b64","_postman_id":"510da012-b76e-4a0e-9b85-24b7c5230b64","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Form","item":[{"name":"Get Forms","id":"8f967a0e-a1c8-4afe-bb1b-bc1bbf76f7db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/forms","description":"<p>Gets the list of forms. If called from the employee context, the PWA policy will be applied to restrict the list of forms to only those in categories that the policy allows.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["forms"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"12332b30-0c74-400d-a292-ea808470cb8f","name":"Get Forms","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/forms"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:52:56 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"24286"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"form_id\": 1,\n            \"description\": \"Vehicle Registration Number\",\n            \"customer_signature\": null,\n            \"employee_signature\": null,\n            \"visitor_signature\": null,\n            \"json\": \"[\\r\\n  {\\r\\n    \\\"type\\\": \\\"header\\\",\\r\\n    \\\"subtype\\\": \\\"h5\\\",\\r\\n    \\\"label\\\": \\\"If you have a vehicle parked in our car park, please provide it's registration details below:\\\",\\r\\n    \\\"className\\\": \\\"my-3\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Vehicle Registration\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1720692013939-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\"\\r\\n  }\\r\\n]\",\n            \"pdf_report\": \".System.Generic Personnel Form\",\n            \"form_category\": {\n                \"form_ref_id\": 2,\n                \"description\": \"Visitor Forms\"\n            }\n        },\n        {\n            \"form_id\": 2,\n            \"description\": \"Onboarding Form\",\n            \"customer_signature\": null,\n            \"employee_signature\": 1,\n            \"visitor_signature\": null,\n            \"json\": \"[\\r\\n  {\\r\\n    \\\"type\\\": \\\"header\\\",\\r\\n    \\\"subtype\\\": \\\"h1\\\",\\r\\n    \\\"label\\\": \\\"New Employee Onboarding Form\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Employee Name\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1720694639129-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"date\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Date Of Birth\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"date-1720694662805-0\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"number\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Telephone Number\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"number-1720694692102-0\\\",\\r\\n    \\\"value\\\": \\\"0\\\",\\r\\n    \\\"min\\\": 0,\\r\\n    \\\"max\\\": 0,\\r\\n    \\\"step\\\": 0\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"select\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Job Position\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"select-1720694739016-0\\\",\\r\\n    \\\"multiple\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Not Selected\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Technical Engineer\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Health & Safety Officer\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Sales Executive\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Laptop (Equipment) Preference\\\",\\r\\n    \\\"inline\\\": false,\\r\\n    \\\"name\\\": \\\"radio-group-1720694863870-0\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Macbook\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Windows PC\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Other\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  }\\r\\n]\",\n            \"pdf_report\": \".System.Generic Personnel Form Report\",\n            \"form_category\": {\n                \"form_ref_id\": 11,\n                \"description\": \"New Employee Onboarding Form\"\n            }\n        },\n        {\n            \"form_id\": 3,\n            \"description\": \"Training Form\",\n            \"customer_signature\": null,\n            \"employee_signature\": null,\n            \"visitor_signature\": null,\n            \"json\": \"[\\r\\n  {\\r\\n    \\\"type\\\": \\\"header\\\",\\r\\n    \\\"subtype\\\": \\\"h1\\\",\\r\\n    \\\"label\\\": \\\"Training Form\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Employee Name\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1720694986866-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Employee ID\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1720694999621-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\",\\r\\n    \\\"maxlength\\\": 2\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Please Select ONE Of The Following\\\",\\r\\n    \\\"inline\\\": false,\\r\\n    \\\"name\\\": \\\"radio-group-1720695053089-0\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Option 1\\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Option 2\\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Option 3\\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"checkbox-group\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Checkbox Group\\\",\\r\\n    \\\"toggle\\\": false,\\r\\n    \\\"inline\\\": false,\\r\\n    \\\"name\\\": \\\"checkbox-group-1720695066709-0\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Option 1\\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Option 2\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Option 3\\\",\\r\\n        \\\"value\\\": \\\"\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Provide A Detailed Description Of What You've Learnt\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1720695080950-0\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"file\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Please Upload Your Presentation\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"file-1720695086369-0\\\",\\r\\n    \\\"subtype\\\": \\\"file\\\",\\r\\n    \\\"multiple\\\": false\\r\\n  }\\r\\n]\",\n            \"pdf_report\": \".System.Generic Personnel Form Report\",\n            \"form_category\": {\n                \"form_ref_id\": 5,\n                \"description\": \"Training Form\"\n            }\n        },\n        {\n            \"form_id\": 4,\n            \"description\": \"Performance Review Self-Assessment\",\n            \"customer_signature\": null,\n            \"employee_signature\": 1,\n            \"visitor_signature\": null,\n            \"json\": \"[\\r\\n  {\\r\\n    \\\"type\\\": \\\"header\\\",\\r\\n    \\\"subtype\\\": \\\"h1\\\",\\r\\n    \\\"label\\\": \\\"Performance Review&nbsp; - Employee Self-Assessment\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"select\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Quality of Work\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"select-1737036602612-0\\\",\\r\\n    \\\"multiple\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Needs Improvement \\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Average \\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Excellent \\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"select\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Communication Skills\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"select-1737036897631-0\\\",\\r\\n    \\\"multiple\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Needs improvement \\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Average \\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Excellent \\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"select\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Productivity / Efficiency\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"select-1737037010102-0\\\",\\r\\n    \\\"multiple\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Needs improvement \\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Average \\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Excellent \\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"select\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Problem-Solving Skills\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"select-1737037165589-0\\\",\\r\\n    \\\"multiple\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Needs improvement \\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Average \\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Excellent \\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"select\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Initiative &amp; Creativity\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"select-1737037219417-0\\\",\\r\\n    \\\"multiple\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Needs improvement \\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Average \\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Excellent \\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Employees comments:\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737037294698-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\",\\r\\n    \\\"maxlength\\\": 5\\r\\n  }\\r\\n]\",\n            \"pdf_report\": \".System.Generic Personnel Form Report\",\n            \"form_category\": {\n                \"form_ref_id\": 6,\n                \"description\": \"Performance Review Self-Assessment Form\"\n            }\n        },\n        {\n            \"form_id\": 6,\n            \"description\": \"Travel and Expense Reimbursement details \",\n            \"customer_signature\": null,\n            \"employee_signature\": 1,\n            \"visitor_signature\": null,\n            \"json\": \"[\\r\\n  {\\r\\n    \\\"type\\\": \\\"header\\\",\\r\\n    \\\"subtype\\\": \\\"h1\\\",\\r\\n    \\\"label\\\": \\\"TRIP DETAILS&nbsp;\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Purpose of Trip\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737037598237-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Destination&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737037635484-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"date\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Departure Date&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"date-1737037673053-0\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"date\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Return Date\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"date-1737037692622-0\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Total Travel Expenses&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737037781897-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\",\\r\\n    \\\"maxlength\\\": 1\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Total Reimbursement Requested\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737037825389-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\"\\r\\n  }\\r\\n]\",\n            \"pdf_report\": \".System.Generic Personnel Form Report\",\n            \"form_category\": {\n                \"form_ref_id\": 7,\n                \"description\": \"Travel and Expense Reimbursement Form\"\n            }\n        },\n        {\n            \"form_id\": 7,\n            \"description\": \"Exit Interview form \",\n            \"customer_signature\": null,\n            \"employee_signature\": 1,\n            \"visitor_signature\": null,\n            \"json\": \"[\\r\\n  {\\r\\n    \\\"type\\\": \\\"header\\\",\\r\\n    \\\"subtype\\\": \\\"h1\\\",\\r\\n    \\\"label\\\": \\\"Exit Interview&nbsp;\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"select\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Reason for leaving&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"select-1737047438415-0\\\",\\r\\n    \\\"multiple\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\" Career Advancement\\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Personal Reasons\\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Relocation\\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Retirement\\\",\\r\\n        \\\"value\\\": \\\"option-4\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Work-Life Balance\\\",\\r\\n        \\\"value\\\": \\\"option-5\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Health Reasons\\\",\\r\\n        \\\"value\\\": \\\"option-6\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Poor Relationship with Manager\\\",\\r\\n        \\\"value\\\": \\\"option-7 \\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Poor Relationship with Co-workers\\\",\\r\\n        \\\"value\\\": \\\"option-8\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Compensation & Benefits\\\",\\r\\n        \\\"value\\\": \\\"option-9\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Company Culture/Work Environment\\\",\\r\\n        \\\"value\\\": \\\"option-10\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Other (please specify): ___________________________\\\",\\r\\n        \\\"value\\\": \\\"option-11\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"If other please specify reason below&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737047569740-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\",\\r\\n    \\\"maxlength\\\": 2\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"<strong>Overall Job Satisfaction</strong>:\\\",\\r\\n    \\\"inline\\\": false,\\r\\n    \\\"name\\\": \\\"radio-group-1737047606961-0\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"Very Satisfied\\\",\\r\\n        \\\"value\\\": \\\"option-1\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Satisfied\\\",\\r\\n        \\\"value\\\": \\\"option-2\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Neutral\\\",\\r\\n        \\\"value\\\": \\\"option-3\\\",\\r\\n        \\\"selected\\\": true\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Dissatisfied\\\",\\r\\n        \\\"value\\\": \\\"option-4\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"Very Dissatisfied\\\",\\r\\n        \\\"value\\\": \\\"option-5\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Reason for leaving (detailed feedback)\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737047662137-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\",\\r\\n    \\\"maxlength\\\": 2\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Are there any suggestions for improving the work place?\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737047697211-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\",\\r\\n    \\\"maxlength\\\": 2\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"text\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Would you recommend the company as a good place to work?\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"text-1737047727835-0\\\",\\r\\n    \\\"subtype\\\": \\\"text\\\",\\r\\n    \\\"maxlength\\\": 2\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Final Thoughts?\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1737047795192-0\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\"\\r\\n  }\\r\\n]\",\n            \"pdf_report\": \"\",\n            \"form_category\": {\n                \"form_ref_id\": 9,\n                \"description\": \"Exit Interview Form\"\n            }\n        },\n        {\n            \"form_id\": 11,\n            \"description\": \"Probation Review \",\n            \"customer_signature\": 1,\n            \"employee_signature\": 1,\n            \"visitor_signature\": 1,\n            \"json\": \"[\\r\\n  {\\r\\n    \\\"type\\\": \\\"header\\\",\\r\\n    \\\"subtype\\\": \\\"h1\\\",\\r\\n    \\\"label\\\": \\\"Probation Review&nbsp;\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Name&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1754058261307-0\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\",\\r\\n    \\\"maxlength\\\": 10,\\r\\n    \\\"rows\\\": 1\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Position / Department&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1754058303246\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\",\\r\\n    \\\"maxlength\\\": 10,\\r\\n    \\\"rows\\\": 1\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Start Date&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1754058302797\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\",\\r\\n    \\\"maxlength\\\": 10,\\r\\n    \\\"rows\\\": 1\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Probation End Date:\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1754058302210\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\",\\r\\n    \\\"maxlength\\\": 10,\\r\\n    \\\"rows\\\": 1\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Review Date:\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1754058365440\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\",\\r\\n    \\\"maxlength\\\": 10,\\r\\n    \\\"rows\\\": 1\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"<h3 data-start=\\\\\\\"580\\\\\\\" data-end=\\\\\\\"615\\\\\\\"><strong data-start=\\\\\\\"584\\\\\\\" data-end=\\\\\\\"613\\\\\\\">Performance Assessment</strong></h3>\\\\n<p data-start=\\\\\\\"616\\\\\\\" data-end=\\\\\\\"776\\\\\\\"></p>\\\",\\r\\n    \\\"description\\\": \\\"Please rate the employee on the following criteria: (1 = Poor, 2 = Needs Improvement, 3 = Meets Expectations, 4 = Exceeds Expectations, 5 = Outstanding)\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1754058577751-0\\\",\\r\\n    \\\"value\\\": \\\"Please rate the employee on the following criteria:(1 = Poor, 2 = Needs Improvement, 3 = Meets Expectations, 4 = Exceeds Expectations, 5 = Outstanding)\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\"\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Quality of work&nbsp;\\\",\\r\\n    \\\"inline\\\": true,\\r\\n    \\\"name\\\": \\\"radio-group-1754058451291-0\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"1\\\",\\r\\n        \\\"value\\\": \\\"Poor\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"2\\\",\\r\\n        \\\"value\\\": \\\" Needs Improvement\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"3\\\",\\r\\n        \\\"value\\\": \\\"Meets Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"4\\\",\\r\\n        \\\"value\\\": \\\" Exceeds Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"5\\\",\\r\\n        \\\"value\\\": \\\"Outstanding\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Productivity / Efficiency\\\",\\r\\n    \\\"inline\\\": true,\\r\\n    \\\"name\\\": \\\"radio-group-1754058618118\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"1\\\",\\r\\n        \\\"value\\\": \\\"Poor\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"2\\\",\\r\\n        \\\"value\\\": \\\" Needs Improvement\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"3\\\",\\r\\n        \\\"value\\\": \\\"Meets Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"4\\\",\\r\\n        \\\"value\\\": \\\" Exceeds Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"5\\\",\\r\\n        \\\"value\\\": \\\"Outstanding\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Attendance &amp; Punctuality\\\",\\r\\n    \\\"inline\\\": true,\\r\\n    \\\"name\\\": \\\"radio-group-1754058617499\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"1\\\",\\r\\n        \\\"value\\\": \\\"Poor\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"2\\\",\\r\\n        \\\"value\\\": \\\" Needs Improvement\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"3\\\",\\r\\n        \\\"value\\\": \\\"Meets Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"4\\\",\\r\\n        \\\"value\\\": \\\" Exceeds Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"5\\\",\\r\\n        \\\"value\\\": \\\"Outstanding\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"<table><tbody><tr><td data-start=\\\\\\\"1173\\\\\\\" data-end=\\\\\\\"1212\\\\\\\" data-col-size=\\\\\\\"sm\\\\\\\">Teamwork &amp; Communication</td></tr></tbody></table><table><tbody><tr><td data-col-size=\\\\\\\"sm\\\\\\\" data-start=\\\\\\\"1212\\\\\\\" data-end=\\\\\\\"1226\\\\\\\"></td></tr></tbody></table>\\\",\\r\\n    \\\"inline\\\": true,\\r\\n    \\\"name\\\": \\\"radio-group-1754058616659\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"1\\\",\\r\\n        \\\"value\\\": \\\"Poor\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"2\\\",\\r\\n        \\\"value\\\": \\\" Needs Improvement\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"3\\\",\\r\\n        \\\"value\\\": \\\"Meets Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"4\\\",\\r\\n        \\\"value\\\": \\\" Exceeds Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"5\\\",\\r\\n        \\\"value\\\": \\\"Outstanding\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Initiative &amp; Problem-Solving\\\",\\r\\n    \\\"inline\\\": true,\\r\\n    \\\"name\\\": \\\"radio-group-1754058706161\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"1\\\",\\r\\n        \\\"value\\\": \\\"Poor\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"2\\\",\\r\\n        \\\"value\\\": \\\" Needs Improvement\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"3\\\",\\r\\n        \\\"value\\\": \\\"Meets Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"4\\\",\\r\\n        \\\"value\\\": \\\" Exceeds Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"5\\\",\\r\\n        \\\"value\\\": \\\"Outstanding\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"radio-group\\\",\\r\\n    \\\"required\\\": true,\\r\\n    \\\"label\\\": \\\"Compliance with Company Policies\\\",\\r\\n    \\\"inline\\\": true,\\r\\n    \\\"name\\\": \\\"radio-group-1754058705517\\\",\\r\\n    \\\"other\\\": false,\\r\\n    \\\"values\\\": [\\r\\n      {\\r\\n        \\\"label\\\": \\\"1\\\",\\r\\n        \\\"value\\\": \\\"Poor\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"2\\\",\\r\\n        \\\"value\\\": \\\" Needs Improvement\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"3\\\",\\r\\n        \\\"value\\\": \\\"Meets Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"4\\\",\\r\\n        \\\"value\\\": \\\" Exceeds Expectations\\\",\\r\\n        \\\"selected\\\": false\\r\\n      },\\r\\n      {\\r\\n        \\\"label\\\": \\\"5\\\",\\r\\n        \\\"value\\\": \\\"Outstanding\\\",\\r\\n        \\\"selected\\\": false\\r\\n      }\\r\\n    ]\\r\\n  },\\r\\n  {\\r\\n    \\\"type\\\": \\\"textarea\\\",\\r\\n    \\\"required\\\": false,\\r\\n    \\\"label\\\": \\\"Additional Comments&nbsp;\\\",\\r\\n    \\\"className\\\": \\\"form-control\\\",\\r\\n    \\\"name\\\": \\\"textarea-1754058761907-0\\\",\\r\\n    \\\"subtype\\\": \\\"textarea\\\",\\r\\n    \\\"maxlength\\\": 6,\\r\\n    \\\"rows\\\": 3\\r\\n  }\\r\\n]\",\n            \"pdf_report\": \".System.Generic Personnel Form Report\",\n            \"form_category\": {\n                \"form_ref_id\": 12,\n                \"description\": \"Probation Review Form\"\n            }\n        }\n    ]\n}"}],"_postman_id":"8f967a0e-a1c8-4afe-bb1b-bc1bbf76f7db"}],"id":"356be830-331e-4692-ab20-ae2fb6cb12a6","_postman_id":"356be830-331e-4692-ab20-ae2fb6cb12a6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Form Category","item":[{"name":"Get Form Categories","id":"0d1ec3d7-c801-437c-aa76-1b66309e9f1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/form-categories","description":"<p>Gets the list of form categories. If called from the employee context, the PWA policy will be applied to restrict which categories are visible. The pwa_context GET parameter can be one of job, personnel-view, personnel-add depending on which categories should be returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["form-categories"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"ba9f8303-a1b5-4c94-b339-bc2d5334cbc5","name":"Get Form Categories","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/form-categories"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:53:06 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"575"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"form_ref_id\": 2,\n            \"description\": \"Visitor Forms\"\n        },\n        {\n            \"form_ref_id\": 5,\n            \"description\": \"Training Form\"\n        },\n        {\n            \"form_ref_id\": 6,\n            \"description\": \"Performance Review Self-Assessment Form\"\n        },\n        {\n            \"form_ref_id\": 7,\n            \"description\": \"Travel and Expense Reimbursement Form\"\n        },\n        {\n            \"form_ref_id\": 9,\n            \"description\": \"Exit Interview Form\"\n        },\n        {\n            \"form_ref_id\": 10,\n            \"description\": \"All Forms\"\n        },\n        {\n            \"form_ref_id\": 11,\n            \"description\": \"New Employee Onboarding Form\"\n        },\n        {\n            \"form_ref_id\": 12,\n            \"description\": \"Probation Review Form\"\n        },\n        {\n            \"form_ref_id\": 13,\n            \"description\": \"Employee Changes Sign Off & Leavers Form \"\n        }\n    ]\n}"}],"_postman_id":"0d1ec3d7-c801-437c-aa76-1b66309e9f1c"}],"id":"fc5a3b4d-463f-44c9-99d0-518e62fb1a38","_postman_id":"fc5a3b4d-463f-44c9-99d0-518e62fb1a38","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"GPS","item":[{"name":"Get GPS","id":"04c9b784-805f-4b35-9c69-07bfc2c20c9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/gps/26","description":"<p>Gets a single GPS record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["gps","26"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"808fb8ee-8533-4872-a1f3-19e11b24ccd3","name":"Get GPS","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/gps/26"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:53:49 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"144"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-09-13 08:22:49.000\",\n            \"longitude\": \"-2.745958\",\n            \"latitude\": \"53.546189\"\n        }\n    ]\n}"}],"_postman_id":"04c9b784-805f-4b35-9c69-07bfc2c20c9f"},{"name":"Get GPSs","id":"1d4885f4-19ba-4b38-b301-63457ced63fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/gps","description":"<p>Get a list of GPS records in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["gps"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"8b241070-a916-4dcb-a813-545f42ab10eb","name":"Get GPSs","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/gps"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:53:27 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"10564"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 5,\n            \"date_and_time\": \"2024-07-10 16:43:04.000\",\n            \"longitude\": \"-.080866\",\n            \"latitude\": \"51.798699\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-17 13:32:48.000\",\n            \"longitude\": \".300581\",\n            \"latitude\": \"52.459859\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-18 08:10:43.000\",\n            \"longitude\": \".300637\",\n            \"latitude\": \"52.459897\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-19 08:59:20.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-19 17:13:06.000\",\n            \"longitude\": \".300638\",\n            \"latitude\": \"52.459922\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-22 09:03:52.000\",\n            \"longitude\": \".300603\",\n            \"latitude\": \"52.459902\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-23 07:51:31.000\",\n            \"longitude\": \".300590\",\n            \"latitude\": \"52.459905\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-23 12:15:24.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-24 09:38:22.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-25 12:45:05.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-26 08:22:16.000\",\n            \"longitude\": \".300614\",\n            \"latitude\": \"52.459891\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-26 17:07:04.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-29 08:43:28.000\",\n            \"longitude\": \".300609\",\n            \"latitude\": \"52.459930\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-07-31 17:47:43.000\",\n            \"longitude\": \".300598\",\n            \"latitude\": \"52.459929\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-08-06 08:52:58.000\",\n            \"longitude\": \".300520\",\n            \"latitude\": \"52.459821\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-08-06 17:15:21.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-08-13 10:26:56.000\",\n            \"longitude\": \".300599\",\n            \"latitude\": \"52.459938\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-08-14 16:08:14.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-08-14 18:04:21.000\",\n            \"longitude\": \".300611\",\n            \"latitude\": \"52.459845\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-08-20 08:59:38.000\",\n            \"longitude\": \".300610\",\n            \"latitude\": \"52.459954\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-10 11:00:11.000\",\n            \"longitude\": \".300598\",\n            \"latitude\": \"52.459900\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-10 19:55:10.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-09-12 07:50:58.000\",\n            \"longitude\": \"-2.734826\",\n            \"latitude\": \"53.538909\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-12 10:37:24.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-13 07:33:28.000\",\n            \"longitude\": \".300619\",\n            \"latitude\": \"52.459914\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-09-13 08:22:49.000\",\n            \"longitude\": \"-2.745958\",\n            \"latitude\": \"53.546189\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-13 12:29:57.000\",\n            \"longitude\": \".300634\",\n            \"latitude\": \"52.459881\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-16 08:16:40.000\",\n            \"longitude\": \".300625\",\n            \"latitude\": \"52.459940\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-17 09:49:33.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-09-17 18:06:42.000\",\n            \"longitude\": \"-2.739405\",\n            \"latitude\": \"53.542912\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-09-18 09:02:33.000\",\n            \"longitude\": \"-2.739405\",\n            \"latitude\": \"53.542912\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-18 10:21:55.000\",\n            \"longitude\": \".300589\",\n            \"latitude\": \"52.459902\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-19 09:17:44.000\",\n            \"longitude\": \".300599\",\n            \"latitude\": \"52.459893\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-19 11:40:40.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-19 17:35:44.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-09-23 08:26:33.000\",\n            \"longitude\": \"-2.734795\",\n            \"latitude\": \"53.538898\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-09-24 07:28:05.000\",\n            \"longitude\": \"-2.698400\",\n            \"latitude\": \"53.530295\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-27 07:51:06.000\",\n            \"longitude\": \".300595\",\n            \"latitude\": \"52.459889\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-09-30 09:28:19.000\",\n            \"longitude\": \".300634\",\n            \"latitude\": \"52.459845\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-01 10:23:45.000\",\n            \"longitude\": \".300640\",\n            \"latitude\": \"52.459856\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-01 18:17:32.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-02 08:51:08.000\",\n            \"longitude\": \"-.080888\",\n            \"latitude\": \"51.798665\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-03 08:21:58.000\",\n            \"longitude\": \".300621\",\n            \"latitude\": \"52.459938\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-08 08:08:49.000\",\n            \"longitude\": \".300639\",\n            \"latitude\": \"52.459863\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-08 14:39:15.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-08 14:39:19.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 11,\n            \"date_and_time\": \"2024-10-09 08:02:28.000\",\n            \"longitude\": \"-2.734895\",\n            \"latitude\": \"53.538873\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-10 14:35:44.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-11 10:30:03.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-17 09:29:15.000\",\n            \"longitude\": \".300635\",\n            \"latitude\": \"52.459922\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-17 11:23:33.000\",\n            \"longitude\": \".300631\",\n            \"latitude\": \"52.459906\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-22 09:25:53.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-24 11:19:17.000\",\n            \"longitude\": \".300624\",\n            \"latitude\": \"52.459888\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-10-28 08:59:01.000\",\n            \"longitude\": \".300645\",\n            \"latitude\": \"52.459858\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-01 09:35:08.000\",\n            \"longitude\": \"-.080854\",\n            \"latitude\": \"51.798707\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-12 09:04:27.000\",\n            \"longitude\": \".301172\",\n            \"latitude\": \"52.456813\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-12 19:16:30.000\",\n            \"longitude\": \".300648\",\n            \"latitude\": \"52.459859\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-13 08:45:56.000\",\n            \"longitude\": \"-.080851\",\n            \"latitude\": \"51.798701\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-19 09:28:03.000\",\n            \"longitude\": \".300630\",\n            \"latitude\": \"52.459878\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-21 19:43:15.000\",\n            \"longitude\": \".300635\",\n            \"latitude\": \"52.459876\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-27 15:33:15.000\",\n            \"longitude\": \".272768\",\n            \"latitude\": \"52.433548\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-28 08:51:28.000\",\n            \"longitude\": \".300649\",\n            \"latitude\": \"52.459875\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-29 10:47:45.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-11-29 17:00:26.000\",\n            \"longitude\": \".300638\",\n            \"latitude\": \"52.459843\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-02 08:33:19.000\",\n            \"longitude\": \"-.080887\",\n            \"latitude\": \"51.798714\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-09 08:58:25.000\",\n            \"longitude\": \".300637\",\n            \"latitude\": \"52.459889\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-10 07:41:11.000\",\n            \"longitude\": \".300642\",\n            \"latitude\": \"52.459845\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-12 17:52:42.000\",\n            \"longitude\": \".300640\",\n            \"latitude\": \"52.459846\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-13 07:54:19.000\",\n            \"longitude\": \".300626\",\n            \"latitude\": \"52.459863\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-13 12:54:40.000\",\n            \"longitude\": \".300631\",\n            \"latitude\": \"52.459875\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-16 11:09:04.000\",\n            \"longitude\": \".271995\",\n            \"latitude\": \"52.427597\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-16 17:32:46.000\",\n            \"longitude\": \".300641\",\n            \"latitude\": \"52.459849\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-17 08:48:54.000\",\n            \"longitude\": \".300640\",\n            \"latitude\": \"52.459854\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-17 17:33:26.000\",\n            \"longitude\": \".303604\",\n            \"latitude\": \"52.456807\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-18 10:06:22.000\",\n            \"longitude\": \"-.085197\",\n            \"latitude\": \"51.796378\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-19 08:52:49.000\",\n            \"longitude\": \".300638\",\n            \"latitude\": \"52.459849\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-19 17:17:41.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2024-12-20 10:22:19.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-08 13:16:46.000\",\n            \"longitude\": \".300638\",\n            \"latitude\": \"52.459838\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-13 08:57:54.000\",\n            \"longitude\": \".308019\",\n            \"latitude\": \"52.458291\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-13 20:18:59.000\",\n            \"longitude\": \".300648\",\n            \"latitude\": \"52.459910\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-14 08:11:05.000\",\n            \"longitude\": \".308019\",\n            \"latitude\": \"52.458291\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-15 17:34:48.000\",\n            \"longitude\": \".300648\",\n            \"latitude\": \"52.459849\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-17 08:37:52.000\",\n            \"longitude\": \".303604\",\n            \"latitude\": \"52.456807\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-20 08:05:24.000\",\n            \"longitude\": \".300640\",\n            \"latitude\": \"52.459843\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-23 09:46:14.000\",\n            \"longitude\": \".300683\",\n            \"latitude\": \"52.459961\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-24 08:59:26.000\",\n            \"longitude\": \".300607\",\n            \"latitude\": \"52.459885\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-24 13:48:36.000\",\n            \"longitude\": \".300640\",\n            \"latitude\": \"52.459840\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-24 18:30:59.000\",\n            \"longitude\": \".300619\",\n            \"latitude\": \"52.459839\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-27 08:57:43.000\",\n            \"longitude\": \".300642\",\n            \"latitude\": \"52.459869\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-28 09:31:05.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-29 09:39:27.000\",\n            \"longitude\": \"-.080910\",\n            \"latitude\": \"51.798699\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-30 11:29:42.000\",\n            \"longitude\": \".300632\",\n            \"latitude\": \"52.459878\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-30 13:51:55.000\",\n            \"longitude\": \".300654\",\n            \"latitude\": \"52.459873\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-01-31 08:45:11.000\",\n            \"longitude\": \".300666\",\n            \"latitude\": \"52.459863\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-02-03 10:17:25.000\",\n            \"longitude\": \".304296\",\n            \"latitude\": \"52.456826\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-02-04 13:05:55.000\",\n            \"longitude\": \".300644\",\n            \"latitude\": \"52.459860\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-02-05 07:56:20.000\",\n            \"longitude\": \".300641\",\n            \"latitude\": \"52.459881\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-02-05 17:32:52.000\",\n            \"longitude\": \".271279\",\n            \"latitude\": \"52.432198\"\n        },\n        {\n            \"employee_id\": 7,\n            \"date_and_time\": \"2025-02-06 10:42:57.000\",\n            \"longitude\": \".300650\",\n            \"latitude\": \"52.459886\"\n        }\n    ]\n}"}],"_postman_id":"1d4885f4-19ba-4b38-b301-63457ced63fd"},{"name":"Add GPS","id":"7eecf4fc-a5c3-467a-afd1-9b302013a98e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"longitude","value":"-6.2604","type":"text"},{"key":"latitude","value":"53.3396","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/gps","description":"<p>Adds a new GPS record into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["gps"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7eecf4fc-a5c3-467a-afd1-9b302013a98e"},{"name":"Update GPS","id":"2d60f523-1659-4b4c-ad7d-9e25768d23e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"date_and_time","value":"2021-01-01 09:00:00","type":"text"},{"key":"longitude","value":"-6.2605","type":"text"},{"key":"latitude","value":"53.3395","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/gps/26","description":"<p>Update an existing GPS record in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["gps","26"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d60f523-1659-4b4c-ad7d-9e25768d23e5"},{"name":"Delete GPS","id":"ac2d986f-1901-4359-885e-581370b020ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/gps/26","description":"<p>Deletes a single GPS record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["gps","26"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac2d986f-1901-4359-885e-581370b020ea"}],"id":"4a49d3a0-8a92-47f8-9f91-faf6d45c311e","_postman_id":"4a49d3a0-8a92-47f8-9f91-faf6d45c311e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Hook","item":[{"name":"Get Hooks","id":"70beebc6-f869-4142-b6c1-31ffe82e7317","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/hooks","description":"<p>Get client side hooks intended to be run in the PWA environment. The app GET parameter can be provided to return hooks specific to an application, e.g. pwa, visitor etc.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["hooks"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"70beebc6-f869-4142-b6c1-31ffe82e7317"},{"name":"Run Hook","id":"76cfdf5a-4899-464c-9afc-434854cc08f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"data1","value":"Some data","type":"text"},{"key":"data2","value":"Some more data","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/hooks/onServerSomeEvent","description":"<p>Runs a server side hook with the provided form data.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["hooks","onServerSomeEvent"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"76cfdf5a-4899-464c-9afc-434854cc08f7"}],"id":"0356d27b-6383-4b79-9f4b-ca3e7b829547","_postman_id":"0356d27b-6383-4b79-9f4b-ca3e7b829547","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Job","item":[{"name":"Job Document","item":[{"name":"Add Job Document","id":"47c6f526-b007-4faa-94d5-d81c4ba014d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"job_id","value":"100","type":"text"},{"key":"description","value":"New job document","type":"text"},{"key":"document_ref_id","value":"1","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"data","value":"{uploaded file}","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-documents","description":"<p>Adds a new document to a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-documents"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"47c6f526-b007-4faa-94d5-d81c4ba014d5"},{"name":"Delete Job Document","id":"c3501c41-fdbb-4c9f-ab32-d10dd8ece632","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-documents/100","description":"<p>Deletes a single job document from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-documents","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3501c41-fdbb-4c9f-ab32-d10dd8ece632"}],"id":"947b8249-5993-4cef-b03c-81b9a80643a4","_postman_id":"947b8249-5993-4cef-b03c-81b9a80643a4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Job Form","item":[{"name":"Add Job Form","id":"fd5ae716-8f03-4148-875a-16db20f1fe13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"job_id","value":"100","type":"text"},{"key":"form_id","value":"1","type":"text"},{"key":"employee_signature","value":"{image data}","type":"text"},{"key":"client_signature","value":"{image data}","type":"text"},{"key":"any_form_field","value":"any_form_data","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-forms","description":"<p>Adds a new form to a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-forms"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd5ae716-8f03-4148-875a-16db20f1fe13"},{"name":"Delete Job Form","id":"974a13d4-29cb-48ad-863e-79c7bba1aa26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-forms/100","description":"<p>Deletes a single job form from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-forms","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"974a13d4-29cb-48ad-863e-79c7bba1aa26"}],"id":"bfce3d36-6a2e-4c80-8292-67333fd6307a","_postman_id":"bfce3d36-6a2e-4c80-8292-67333fd6307a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Job Note","item":[{"name":"Add Job Note","id":"a67a5b8b-fe53-483f-9c9a-bb7ebf97dd9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"job_id","value":"100","type":"text"},{"key":"note","value":"New job note","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-notes","description":"<p>Adds a new note to a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-notes"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a67a5b8b-fe53-483f-9c9a-bb7ebf97dd9d"},{"name":"Delete Job Note","id":"06957db5-8086-4e63-9e17-0c6d0be5f3de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-notes/100","description":"<p>Deletes a single job note from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-notes","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"06957db5-8086-4e63-9e17-0c6d0be5f3de"}],"id":"3e45bfe0-a58b-43fa-b64d-067fd69122cb","_postman_id":"3e45bfe0-a58b-43fa-b64d-067fd69122cb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Job Part","item":[{"name":"Add Job Part","id":"e1726131-6300-4bf4-b2a1-7f2d71c62580","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"job_id","value":"100","type":"text"},{"key":"part_ref_id","value":"1","type":"text"},{"key":"part_id","value":"2","type":"text"},{"key":"code","value":"New code","type":"text"},{"key":"description","value":"New description","type":"text"},{"key":"quantity","value":"5","type":"text"},{"key":"unit","value":"litres","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-parts","description":"<p>Adds an existing part to a job if part_id is specified. Or, if code, description and part_ref_id are specified, a new part is created and associated with a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-parts"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1726131-6300-4bf4-b2a1-7f2d71c62580"},{"name":"Delete Job Part","id":"f9c538bc-9a9a-44fd-8cd6-b8c42f02948e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-parts/100","description":"<p>Deletes a single job part from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-parts","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9c538bc-9a9a-44fd-8cd6-b8c42f02948e"}],"id":"0fd988eb-12c2-4410-baa6-f57f20165111","_postman_id":"0fd988eb-12c2-4410-baa6-f57f20165111","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Job Photo","item":[{"name":"Add Job Photo","id":"4872c1ef-bb91-4a44-9205-232f1560b3fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"job_id","value":"100","type":"text"},{"key":"description","value":"New job photo","type":"text"},{"key":"photo_ref_id","value":"1","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"data","value":"{uploaded file}","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-photos","description":"<p>Adds a new photo to a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-photos"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"4872c1ef-bb91-4a44-9205-232f1560b3fb"},{"name":"Delete Job Photo","id":"eee5e036-5ec9-443b-ac95-7ee891d0c3a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-photos/100","description":"<p>Deletes a single job photo from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-photos","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"eee5e036-5ec9-443b-ac95-7ee891d0c3a4"}],"id":"40b28787-0a0f-4135-8dc5-692a0fe80d1e","_postman_id":"40b28787-0a0f-4135-8dc5-692a0fe80d1e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Job Employee","item":[{"name":"Update Job Employee","id":"df8ec6f2-81d3-4efb-b6a4-be500477cec2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"189","type":"text"},{"key":"status","value":"2","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-employees/100","description":"<p>Update an existing job employee record. This endpoint is generally used to update the status of an employee's activity on a job, e.g. changing to In progress, Paused, Completed etc.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-employees","100"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"df8ec6f2-81d3-4efb-b6a4-be500477cec2"}],"id":"25394591-b0b6-4792-97c5-d0a213f78f51","_postman_id":"25394591-b0b6-4792-97c5-d0a213f78f51","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Get Job","id":"db979e1f-752a-4278-8804-83452215063f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/jobs/2614","description":"<p>Get detailed information about a specific job in the system including documents, who is assigned, forms, notes, operations, parts and photos. The endpoint will interrogate the PWA policy assigned to the employee and only return appropriate information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["jobs","2614"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"db979e1f-752a-4278-8804-83452215063f"},{"name":"Get Jobs","id":"68999436-cdf3-4722-8f6e-bb4e8bcfa09f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/jobs","description":"<p>Get a list of jobs in the system. The endpoint will interrogate the employee's PWA policy and return either all jobs or only jobs that are assigned to the employee.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["jobs"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"8b911077-5bf9-492e-bd59-560e15a97e4c","name":"Get Jobs","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/jobs"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:54:33 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"1266"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"job_id\": 1,\n            \"code\": \"1111\",\n            \"description\": \"Software installation\",\n            \"operation_ids\": [\n                2,\n                3,\n                4\n            ],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 2,\n            \"code\": \"1000\",\n            \"description\": \"1000 Generators Durr Ltd Title\",\n            \"operation_ids\": [\n                7,\n                2,\n                6,\n                4\n            ],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 3,\n            \"code\": \"1001\",\n            \"description\": \"1001 Durr 2\",\n            \"operation_ids\": [],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 4,\n            \"code\": \"1003\",\n            \"description\": \"1003 Durr 3\",\n            \"operation_ids\": [\n                7,\n                2,\n                6,\n                4\n            ],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 5,\n            \"code\": \"1002\",\n            \"description\": \"1002 30 chairs for xyz\",\n            \"operation_ids\": [\n                7,\n                2,\n                6,\n                4,\n                5,\n                3\n            ],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 6,\n            \"code\": \"1004\",\n            \"description\": \"1004 abc\",\n            \"operation_ids\": [],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 7,\n            \"code\": \"1005\",\n            \"description\": \"1005Abc2\",\n            \"operation_ids\": [],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 8,\n            \"code\": \"678\",\n            \"description\": \"Chairs for AIT\",\n            \"operation_ids\": [\n                11,\n                10,\n                8,\n                9\n            ],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        },\n        {\n            \"job_id\": 11,\n            \"code\": \"1478\",\n            \"description\": \"MB job test 3\",\n            \"operation_ids\": [],\n            \"job_status\": {\n                \"status\": 1,\n                \"description\": \"In progress\"\n            }\n        }\n    ]\n}"}],"_postman_id":"68999436-cdf3-4722-8f6e-bb4e8bcfa09f"}],"id":"6320563a-ba2d-4ce8-ae0c-5ea546277af9","_postman_id":"6320563a-ba2d-4ce8-ae0c-5ea546277af9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Job Form File","item":[{"name":"Delete Job Form File","id":"c79c2ae9-3c4b-49da-9ebc-6a0dd2bd0893","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/job-form-file/55","description":"<p>This endpoint can be used to delete files associated with a form that has been completed as part of a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["job-form-file","55"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c79c2ae9-3c4b-49da-9ebc-6a0dd2bd0893"}],"id":"d14264d1-6031-4967-834d-8b1f5d641315","_postman_id":"d14264d1-6031-4967-834d-8b1f5d641315","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"License","item":[{"name":"Get Licenses","id":"584467b1-c333-4159-8373-71b42073b346","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/licenses","description":"<p>This API endpoint requires the definition of a 'licence' database in the database.php configuration file. That database should contain a licence server schema. This endpoint will return details of licences issued where the distributor matches the authorised user name. If no 'licence' database is available, this endpoint will return the details of the currently installed licence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["licenses"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"584467b1-c333-4159-8373-71b42073b346"},{"name":"Get Licence","id":"54573a02-fee6-4344-b5d1-d5d764de59f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/licenses/5","description":"<p>This API endpoint requires the definition of a 'licence' database in the database.php configuration file. That database should contain a licence server schema. This endpoint will return details of a single licence issued where the distributor matches the authorised user name. If no 'licence' database is available, this endpoint will return the details of the currently installed licence.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["licenses","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"54573a02-fee6-4344-b5d1-d5d764de59f4"}],"id":"dcbfbbcc-bd90-4db7-8043-74786b44cd5d","_postman_id":"dcbfbbcc-bd90-4db7-8043-74786b44cd5d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Mobile Worker","item":[{"name":"Get Mobile Worker Data","id":"d7faa5a7-8ba6-4d7c-b145-49ae08bff583","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/mobile-worker?table=temployee","description":"<p>Get all data within a mobile worker table. The table GET parameter must be specified and be listed in [Mobile Worker API Tables].</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["mobile-worker"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"temployee"}],"variable":[]}},"response":[],"_postman_id":"d7faa5a7-8ba6-4d7c-b145-49ae08bff583"},{"name":"Add Mobile Worker Data","id":"14e6bbfd-43d5-4c27-8cc2-853f3dd67d45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"<xml xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882'\r\n\txmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882'\r\n\txmlns:rs='urn:schemas-microsoft-com:rowset'\r\n\txmlns:z='#RowsetSchema'>\r\n<s:Schema id='RowsetSchema'>\r\n\t<s:ElementType name='row' content='eltOnly'>\r\n\t\t<s:AttributeType name='employee_id' rs:number='1'>\r\n\t\t\t<s:datatype dt:type='int' dt:maxLength='4' rs:precision='10' rs:fixedlength='true' rs:maybenull='false'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:AttributeType name='first_name' rs:number='2' rs:writeunknown='true'>\r\n\t\t\t<s:datatype dt:type='string' dt:maxLength='60' rs:maybenull='false'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:AttributeType name='last_name' rs:number='3' rs:writeunknown='true'>\r\n\t\t\t<s:datatype dt:type='string' dt:maxLength='60' rs:maybenull='false'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:AttributeType name='vts_secure_hash' rs:number='4' rs:nullable='true' rs:writeunknown='true'>\r\n\t\t\t<s:datatype dt:type='string' dt:maxLength='64'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:AttributeType name='vts_user_name' rs:number='5' rs:nullable='true' rs:writeunknown='true'>\r\n\t\t\t<s:datatype dt:type='string' dt:maxLength='4294967295' rs:long='true'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:AttributeType name='employee_status_id' rs:number='6' rs:nullable='true' rs:writeunknown='true'>\r\n\t\t\t<s:datatype dt:type='int' dt:maxLength='4' rs:precision='10' rs:fixedlength='true'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:AttributeType name='employee_mobile_worker_policy_id' rs:number='7' rs:nullable='true' rs:writeunknown='true'>\r\n\t\t\t<s:datatype dt:type='int' dt:maxLength='4' rs:precision='10' rs:fixedlength='true'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:AttributeType name='e_mail' rs:number='8' rs:nullable='true' rs:writeunknown='true'>\r\n\t\t\t<s:datatype dt:type='string' dt:maxLength='255'/>\r\n\t\t</s:AttributeType>\r\n\t\t<s:extends type='rs:rowbase'/>\r\n\t</s:ElementType>\r\n</s:Schema>\r\n<rs:data>\r\n\t<z:row employee_id='187' first_name='Rick' last_name='Nash' vts_secure_hash='' \r\n         vts_user_name='Rich Nash' employee_status_id='7' employee_mobile_worker_policy_id='4' e_mail=''/>\r\n\t<z:row employee_id='188' first_name='John' last_name='Cody' vts_secure_hash=''\r\n\t\t vts_user_name='John Cody' employee_status_id='7' employee_mobile_worker_policy_id='4' e_mail=''/>\r\n\t<z:row employee_id='189' first_name='Pete' last_name='Moore' vts_secure_hash=''\r\n\t\t vts_user_name='Pete Moore' employee_status_id='7' employee_mobile_worker_policy_id='1' e_mail=''/>\r\n</rs:data>\r\n</xml>","options":{"raw":{"language":"json"}}},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/mobile-worker?table=temployee","description":"<p>Adds data to a mobile worker table. The table GET parameter must be specified and be listed in [Mobile Worker API Tables]. This endpoint accepts raw XML input that is serialized from an ADODB.Recordset that can be parsed as a SimpleXMLElement and which corresponds to the schema specified by the table GET parameter.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["mobile-worker"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"temployee"}],"variable":[]}},"response":[],"_postman_id":"14e6bbfd-43d5-4c27-8cc2-853f3dd67d45"},{"name":"Delete Mobile Worker Data","id":"fc9f5090-ea60-4d65-8d9c-620cff8be93b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/mobile-worker/188?table=temployee","description":"<p>Deletes a single record from a mobile worker table. The table GET parameter must be specified and be listed in [Mobile Worker API Tables].</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["mobile-worker","188"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"table","value":"temployee"}],"variable":[]}},"response":[],"_postman_id":"fc9f5090-ea60-4d65-8d9c-620cff8be93b"}],"id":"3adfe3ea-834d-44a4-9a51-1a1a165c0a2d","_postman_id":"3adfe3ea-834d-44a4-9a51-1a1a165c0a2d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Message Category","item":[{"name":"Get Message Categories","id":"115f31fe-23b0-4677-b205-3c97d6d234a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/message-categories","description":"<p>Gets message categories in the system. The pwa_context GET parameter can be one of job, personnel-view, personnel-add depending on which categories should be returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["message-categories"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"5faa6666-00cd-44e1-a7a7-e5c8fe1d2490","name":"Get Message Categories","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/message-categories"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:56:27 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"441"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"message_ref_id\": 1,\n            \"description\": \"General\"\n        },\n        {\n            \"message_ref_id\": 2,\n            \"description\": \"Salary and wages\"\n        },\n        {\n            \"message_ref_id\": 3,\n            \"description\": \"Uniform\"\n        },\n        {\n            \"message_ref_id\": 4,\n            \"description\": \"Training\"\n        },\n        {\n            \"message_ref_id\": 5,\n            \"description\": \"News and announcements\"\n        },\n        {\n            \"message_ref_id\": 6,\n            \"description\": \"Benefits\"\n        },\n        {\n            \"message_ref_id\": 7,\n            \"description\": \"Policies and procedures\"\n        },\n        {\n            \"message_ref_id\": 8,\n            \"description\": \"Compliance\"\n        }\n    ]\n}"}],"_postman_id":"115f31fe-23b0-4677-b205-3c97d6d234a7"}],"id":"5e4e4750-067d-499f-9f23-ff7287dc496f","_postman_id":"5e4e4750-067d-499f-9f23-ff7287dc496f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Muster Point","item":[{"name":"Get Muster Points","id":"5c996e01-0beb-4017-b21d-73ca3b3c71e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/muster-points","description":"<p>Get a list of muster points in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["muster-points"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"68762621-6cc6-4820-811a-e59b21b038b8","name":"Get Muster Points","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/muster-points"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:56:53 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"406"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"muster_point_id\": 2,\n            \"description\": \"Car Park\",\n            \"colour\": 255,\n            \"ip_address\": \"\",\n            \"notepad\": \"\",\n            \"muster_point_polygon\": null\n        },\n        {\n            \"muster_point_id\": 3,\n            \"description\": \"Default Muster\",\n            \"colour\": 0,\n            \"ip_address\": \"\",\n            \"notepad\": \"\",\n            \"muster_point_polygon\": null\n        },\n        {\n            \"muster_point_id\": 4,\n            \"description\": \"Visitor Muster Point\",\n            \"colour\": 915666,\n            \"ip_address\": \"\",\n            \"notepad\": \"\",\n            \"muster_point_polygon\": null\n        }\n    ]\n}"}],"_postman_id":"5c996e01-0beb-4017-b21d-73ca3b3c71e3"},{"name":"Get Muster Point","id":"29f2b524-7df4-4dc8-95c6-67275e6718dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/muster-points/2","description":"<p>Get a single muster point in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["muster-points","2"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"0c4bc4ca-f0a9-44f3-b358-176c6041e35b","name":"Get Muster Point","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/muster-points/2"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:57:05 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"153"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"muster_point_id\": 2,\n            \"description\": \"Car Park\",\n            \"colour\": 255,\n            \"ip_address\": \"\",\n            \"notepad\": \"\",\n            \"muster_point_polygon\": null\n        }\n    ]\n}"}],"_postman_id":"29f2b524-7df4-4dc8-95c6-67275e6718dd"},{"name":"Add Muster Point","id":"e3efd20e-a1db-4c90-9cb5-0bb7026424b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Muster Point","type":"text"},{"key":"number","value":"99","type":"text","disabled":true}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/muster-points","description":"<p>Adds a new muster point into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["muster-points"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3efd20e-a1db-4c90-9cb5-0bb7026424b4"},{"name":"Update Muster Point","id":"ddea92e1-966e-4608-8c6f-4a04c1868311","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Updated Muster Point","type":"text"},{"key":"number","value":"100","type":"text","disabled":true}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/muster-points/5","description":"<p>Update an existing muster point in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["muster-points","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddea92e1-966e-4608-8c6f-4a04c1868311"},{"name":"Delete Muster Point","id":"14493fe8-5c45-4af3-8c57-f4cd383eae98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/muster-points/5","description":"<p>Deletes a single muster point from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["muster-points","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"14493fe8-5c45-4af3-8c57-f4cd383eae98"}],"id":"7f2fa7d1-2c51-4380-bf24-3bf0b27d32c6","_postman_id":"7f2fa7d1-2c51-4380-bf24-3bf0b27d32c6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Operation","item":[{"name":"Get Operations","id":"9639cc57-ed72-4aed-9096-63062db67f81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/operations","description":"<p>Gets job operations in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["operations"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"a5a219f5-9d88-4b4d-8690-3bbab16bc93d","name":"Get Operations","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/operations"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:57:18 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"838"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"operation_id\": 1,\n            \"code\": \"001\",\n            \"description\": \"None\"\n        },\n        {\n            \"operation_id\": 2,\n            \"code\": \"005\",\n            \"description\": \"Cleaning\"\n        },\n        {\n            \"operation_id\": 3,\n            \"code\": \"003\",\n            \"description\": \"Tanking\"\n        },\n        {\n            \"operation_id\": 4,\n            \"code\": \"004\",\n            \"description\": \"Testing\"\n        },\n        {\n            \"operation_id\": 5,\n            \"code\": \"002\",\n            \"description\": \"Standard\"\n        },\n        {\n            \"operation_id\": 6,\n            \"code\": \"006\",\n            \"description\": \"Quality Check\"\n        },\n        {\n            \"operation_id\": 7,\n            \"code\": \"007\",\n            \"description\": \"Assembly\"\n        },\n        {\n            \"operation_id\": 8,\n            \"code\": \"008\",\n            \"description\": \"Chair Leg\"\n        },\n        {\n            \"operation_id\": 9,\n            \"code\": \"009\",\n            \"description\": \"Chair Seat\"\n        },\n        {\n            \"operation_id\": 10,\n            \"code\": \"010\",\n            \"description\": \"Chair Back\"\n        },\n        {\n            \"operation_id\": 11,\n            \"code\": \"011\",\n            \"description\": \"Chair Arm\"\n        },\n        {\n            \"operation_id\": 12,\n            \"code\": \"CUR1\",\n            \"description\": \"Curtains\"\n        },\n        {\n            \"operation_id\": 13,\n            \"code\": \"SI1\",\n            \"description\": \"Sides\"\n        },\n        {\n            \"operation_id\": 14,\n            \"code\": \"RO1\",\n            \"description\": \"Roof\"\n        }\n    ]\n}"}],"_postman_id":"9639cc57-ed72-4aed-9096-63062db67f81"}],"id":"462c5913-fbc3-4986-a3b7-c4dd89e7e2f8","_postman_id":"462c5913-fbc3-4986-a3b7-c4dd89e7e2f8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Part Category","item":[{"name":"Get Part Categories","id":"33642897-1bbb-4141-94f6-16e336db4897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/part-categories","description":"<p>Gets the list of part categories. If called from the employee context, the PWA policy will be applied to restrict which categories are visible.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["part-categories"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"0cbfd12a-c632-435d-9b6e-9b41dcbe231f","name":"Get Part Categories","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/part-categories"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:57:35 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"273"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"part_ref_id\": 1,\n            \"description\": \"All Parts\"\n        },\n        {\n            \"part_ref_id\": 2,\n            \"description\": \"Generator Parts\"\n        },\n        {\n            \"part_ref_id\": 3,\n            \"description\": \"IT Parts\"\n        },\n        {\n            \"part_ref_id\": 4,\n            \"description\": \"Consumables\"\n        },\n        {\n            \"part_ref_id\": 5,\n            \"description\": \"Manufacturing Parts\"\n        }\n    ]\n}"}],"_postman_id":"33642897-1bbb-4141-94f6-16e336db4897"}],"id":"18dfaef4-3789-4bc7-acca-4ab5c2cad7ba","_postman_id":"18dfaef4-3789-4bc7-acca-4ab5c2cad7ba","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Part","item":[{"name":"Get Parts","id":"640c2b6e-19ba-4c3b-8132-9b265ca87208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/parts","description":"<p>Get a list of parts in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["parts"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"d353a0bb-7c25-444c-9e62-57d459e399ad","name":"Get Parts","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/parts"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:57:48 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"808"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"part_id\": 1,\n            \"code\": \"\",\n            \"description\": \"CAT5 cable\",\n            \"cost\": \".0000\",\n            \"price\": \".0000\",\n            \"unit\": \"\",\n            \"part_category\": {\n                \"part_ref_id\": 3,\n                \"description\": \"IT Parts\"\n            }\n        },\n        {\n            \"part_id\": 2,\n            \"code\": \"\",\n            \"description\": \"CAT6 cable\",\n            \"cost\": \".0000\",\n            \"price\": \".0000\",\n            \"unit\": \"\",\n            \"part_category\": {\n                \"part_ref_id\": 3,\n                \"description\": \"IT Parts\"\n            }\n        },\n        {\n            \"part_id\": 3,\n            \"code\": \"\",\n            \"description\": \"Tablet\",\n            \"cost\": \".0000\",\n            \"price\": \".0000\",\n            \"unit\": \"\",\n            \"part_category\": {\n                \"part_ref_id\": 3,\n                \"description\": \"IT Parts\"\n            }\n        },\n        {\n            \"part_id\": 4,\n            \"code\": \"\",\n            \"description\": \"3 metre angle Steel\",\n            \"cost\": \".0000\",\n            \"price\": \".0000\",\n            \"unit\": \"\",\n            \"part_category\": {\n                \"part_ref_id\": 5,\n                \"description\": \"Manufacturing Parts\"\n            }\n        },\n        {\n            \"part_id\": 5,\n            \"code\": \"\",\n            \"description\": \"WD40 Can\",\n            \"cost\": \".0000\",\n            \"price\": \".0000\",\n            \"unit\": \"\",\n            \"part_category\": {\n                \"part_ref_id\": 4,\n                \"description\": \"Consumables\"\n            }\n        }\n    ]\n}"}],"_postman_id":"640c2b6e-19ba-4c3b-8132-9b265ca87208"}],"id":"68b034e0-a929-404e-b03c-efe84832458e","_postman_id":"68b034e0-a929-404e-b03c-efe84832458e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Passkey","item":[{"name":"Get Passkey Registrations","id":"3108756f-ab19-4b0b-8433-ea9b85003236","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/passkey?username=Joe Bloggs&context=employee","description":"<p>Get a list of passkey registrations for a given username and context.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["passkey"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"username","value":"Joe Bloggs"},{"key":"context","value":"employee"}],"variable":[]}},"response":[{"id":"2a16f1f5-195c-4500-944a-8b07b10b60f0","name":"Get Passkey Registrations","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://demo.ait-connected.co.uk/Roster/rest/v1/passkey?username=Joe Bloggs&context=employee","host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"path":["passkey"],"query":[{"key":"username","value":"Joe Bloggs"},{"key":"context","value":"employee"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:57:59 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": []\n}"}],"_postman_id":"3108756f-ab19-4b0b-8433-ea9b85003236"},{"name":"Update Passkey Registration","id":"f0cebc68-d6f1-4df8-a525-f4bacdf55f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"fn","value":"getStoredDataHtml|getCreateArgs|getGetArgs|processCreate|processGet|clearRegistrations|queryFidoMetaDataService|passkeyRegistrationRemove","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/passkey","description":"<p>Manages passkey registrations in the system. This endpoint can be used to create new passkey registrations and verify existing passkey registrations as well as deleting passkey registrations and retrieving a list of passkey registrations in an appropriate format. Please refer to the [fn] parameter for more information on the capabilities of this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["passkey"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0cebc68-d6f1-4df8-a525-f4bacdf55f9c"}],"id":"439e828b-2e44-4cf3-8ef8-413ba6b2e660","_postman_id":"439e828b-2e44-4cf3-8ef8-413ba6b2e660","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Period Schedules","item":[{"name":"Get Period Schedule","id":"33914917-6331-435c-bbda-817d16580ccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/period-schedules/5","description":"<p>Gets a single period schedule from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["period-schedules","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"c597995a-6835-45ae-9909-7135daae1c88","name":"Get Period Schedule","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/period-schedules/5"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:58:28 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"14940"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"period_schedule_id\": 5,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"json\": \"{\\\"period_schedule_id\\\":5,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":0,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":0,\\\"anchor_start_date\\\":null,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"37:50\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":null,\\\"amount\\\":[{\\\"amount\\\":\\\"37:50\\\",\\\"timepot\\\":1}],\\\"maximum_debit\\\":\\\"-\\\",\\\"maximum_credit\\\":null,\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Standard Period (Dist)\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":2,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":4,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":5,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":6,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":10,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":10,\\\"code\\\":\\\"RD005\\\",\\\"description\\\":\\\"Rest Day @ Surplus  (No break deducted)\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":10,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":10,\\\"code\\\":\\\"RD005\\\",\\\"description\\\":\\\"Rest Day @ Surplus  (No break deducted)\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}}]}\"\n        }\n    ]\n}"}],"_postman_id":"33914917-6331-435c-bbda-817d16580ccb"},{"name":"Get Period Schedules","id":"2919be7d-c554-44ad-a9c9-027028bfaacf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/period-schedules","description":"<p>Gets the list of period schedules.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["period-schedules"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"dc1f0411-32e3-45c9-95f8-b5b0a4893dc9","name":"Get Period Schedules","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/period-schedules"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:58:16 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"137964"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"period_schedule_id\": 1,\n            \"code\": \"PS01\",\n            \"description\": \"6-14, 14-22, 22-6 M - F, Multi Shift Select\",\n            \"json\": \"{\\\"period_schedule_id\\\":1,\\\"code\\\":\\\"PS01\\\",\\\"description\\\":\\\"6-14, 14-22, 22-6 M - F, Multi Shift Select\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":0,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":0,\\\"anchor_start_date\\\":\\\"2023-04-12 00:00:00.000\\\",\\\"rate_monitoring\\\":[],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":null,\\\"amount\\\":[{\\\"amount\\\":\\\"37:30\\\",\\\"timepot\\\":1}],\\\"maximum_debit\\\":\\\"-\\\",\\\"maximum_credit\\\":\\\"\\\",\\\"script_description\\\":\\\"Period Compensation (take from lowest to highest)\\\",\\\"script_trs_description\\\":\\\"Period Compensation (take from lowest to highest) (Dist)\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":1,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":1,\\\"code\\\":\\\"DS001\\\",\\\"description\\\":\\\"06:00 - 14:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"10:00\\\",\\\"break_to\\\":\\\"11:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"06:01\\\",\\\"core_to\\\":\\\"13:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"18:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"06:00\\\",\\\"band_to\\\":\\\"18:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":2,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":2,\\\"code\\\":\\\"DS002\\\",\\\"description\\\":\\\"14:00 - 22:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"18:00\\\",\\\"break_to\\\":\\\"19:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"21:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"10:00\\\",\\\"rounding_to\\\":\\\"02:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"10:00\\\",\\\"global_grace_to\\\":\\\"02:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"14:00\\\",\\\"band_to\\\":\\\"02:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":3,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":3,\\\"code\\\":\\\"DS003\\\",\\\"description\\\":\\\"22:00 - 06:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"02:00\\\",\\\"break_to\\\":\\\"03:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":1,\\\"core_times\\\":[{\\\"core_from\\\":\\\"22:01\\\",\\\"core_to\\\":\\\"05:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"18:00\\\",\\\"rounding_to\\\":\\\"10:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"18:00\\\",\\\"global_grace_to\\\":\\\"10:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"22:00\\\",\\\"band_to\\\":\\\"10:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":4,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":1,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":1,\\\"code\\\":\\\"DS001\\\",\\\"description\\\":\\\"06:00 - 14:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"10:00\\\",\\\"break_to\\\":\\\"11:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"06:01\\\",\\\"core_to\\\":\\\"13:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"18:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"06:00\\\",\\\"band_to\\\":\\\"18:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":4,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":2,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":2,\\\"code\\\":\\\"DS002\\\",\\\"description\\\":\\\"14:00 - 22:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"18:00\\\",\\\"break_to\\\":\\\"19:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"21:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"10:00\\\",\\\"rounding_to\\\":\\\"02:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"10:00\\\",\\\"global_grace_to\\\":\\\"02:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"14:00\\\",\\\"band_to\\\":\\\"02:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":4,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":3,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":3,\\\"code\\\":\\\"DS003\\\",\\\"description\\\":\\\"22:00 - 06:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"02:00\\\",\\\"break_to\\\":\\\"03:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":1,\\\"core_times\\\":[{\\\"core_from\\\":\\\"22:01\\\",\\\"core_to\\\":\\\"05:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"18:00\\\",\\\"rounding_to\\\":\\\"10:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"18:00\\\",\\\"global_grace_to\\\":\\\"10:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"22:00\\\",\\\"band_to\\\":\\\"10:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":1,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":1,\\\"code\\\":\\\"DS001\\\",\\\"description\\\":\\\"06:00 - 14:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"10:00\\\",\\\"break_to\\\":\\\"11:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"06:01\\\",\\\"core_to\\\":\\\"13:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"18:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"06:00\\\",\\\"band_to\\\":\\\"18:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":2,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":2,\\\"code\\\":\\\"DS002\\\",\\\"description\\\":\\\"14:00 - 22:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"18:00\\\",\\\"break_to\\\":\\\"19:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"21:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"10:00\\\",\\\"rounding_to\\\":\\\"02:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"10:00\\\",\\\"global_grace_to\\\":\\\"02:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"14:00\\\",\\\"band_to\\\":\\\"02:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":3,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":3,\\\"code\\\":\\\"DS003\\\",\\\"description\\\":\\\"22:00 - 06:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"02:00\\\",\\\"break_to\\\":\\\"03:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":1,\\\"core_times\\\":[{\\\"core_from\\\":\\\"22:01\\\",\\\"core_to\\\":\\\"05:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"18:00\\\",\\\"rounding_to\\\":\\\"10:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"18:00\\\",\\\"global_grace_to\\\":\\\"10:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"22:00\\\",\\\"band_to\\\":\\\"10:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":10,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":1,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":1,\\\"code\\\":\\\"DS001\\\",\\\"description\\\":\\\"06:00 - 14:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"10:00\\\",\\\"break_to\\\":\\\"11:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"06:01\\\",\\\"core_to\\\":\\\"13:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"18:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"06:00\\\",\\\"band_to\\\":\\\"18:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":10,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":2,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":2,\\\"code\\\":\\\"DS002\\\",\\\"description\\\":\\\"14:00 - 22:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"18:00\\\",\\\"break_to\\\":\\\"19:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"21:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"10:00\\\",\\\"rounding_to\\\":\\\"02:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"10:00\\\",\\\"global_grace_to\\\":\\\"02:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"14:00\\\",\\\"band_to\\\":\\\"02:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":10,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":3,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":3,\\\"code\\\":\\\"DS003\\\",\\\"description\\\":\\\"22:00 - 06:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"02:00\\\",\\\"break_to\\\":\\\"03:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":1,\\\"core_times\\\":[{\\\"core_from\\\":\\\"22:01\\\",\\\"core_to\\\":\\\"05:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"18:00\\\",\\\"rounding_to\\\":\\\"10:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"18:00\\\",\\\"global_grace_to\\\":\\\"10:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"22:00\\\",\\\"band_to\\\":\\\"10:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":13,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":1,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":1,\\\"code\\\":\\\"DS001\\\",\\\"description\\\":\\\"06:00 - 14:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"10:00\\\",\\\"break_to\\\":\\\"11:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"06:01\\\",\\\"core_to\\\":\\\"13:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"18:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"06:00\\\",\\\"band_to\\\":\\\"18:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":13,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":2,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":2,\\\"code\\\":\\\"DS002\\\",\\\"description\\\":\\\"14:00 - 22:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"18:00\\\",\\\"break_to\\\":\\\"19:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"21:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"10:00\\\",\\\"rounding_to\\\":\\\"02:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"10:00\\\",\\\"global_grace_to\\\":\\\"02:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"14:00\\\",\\\"band_to\\\":\\\"02:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":13,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":3,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":3,\\\"code\\\":\\\"DS003\\\",\\\"description\\\":\\\"22:00 - 06:00 30 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 10:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"02:00\\\",\\\"break_to\\\":\\\"03:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":1,\\\"core_times\\\":[{\\\"core_from\\\":\\\"22:01\\\",\\\"core_to\\\":\\\"05:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"18:00\\\",\\\"rounding_to\\\":\\\"10:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"18:00\\\",\\\"global_grace_to\\\":\\\"10:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"22:00\\\",\\\"band_to\\\":\\\"10:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":16,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":5,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":5,\\\"code\\\":\\\"RD001\\\",\\\"description\\\":\\\"Rest Day @ x1.5 OT  (No break deducted)\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":17,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":6,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":6,\\\"code\\\":\\\"RD002\\\",\\\"description\\\":\\\"Rest Day @ x2 OT (No break deducted)\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"6\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}}]}\"\n        },\n        {\n            \"period_schedule_id\": 2,\n            \"code\": \"PS02\",\n            \"description\": \"09:00 - 17:00 M - F with O/T Approval & Cost Centre\",\n            \"json\": \"{\\\"period_schedule_id\\\":2,\\\"code\\\":\\\"PS02\\\",\\\"description\\\":\\\"09:00 - 17:00 M - F with O\\\\/T Approval & Cost Centre\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":0,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":0,\\\"anchor_start_date\\\":null,\\\"rate_monitoring\\\":[],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":null,\\\"amount\\\":[{\\\"amount\\\":\\\"37:30\\\",\\\"timepot\\\":1}],\\\"maximum_debit\\\":\\\"-\\\",\\\"maximum_credit\\\":\\\"\\\",\\\"script_description\\\":\\\"Period Compensation (take from lowest to highest)\\\",\\\"script_trs_description\\\":\\\"Period Compensation (take from lowest to highest) (Dist)\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":4,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":4,\\\"code\\\":\\\"DS004\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:30\\\",\\\"break_to\\\":\\\"14:30\\\",\\\"break_duration\\\":\\\"00:30\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:03\\\",\\\"core_to\\\":\\\"16:57\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"13\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":2,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":4,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":4,\\\"code\\\":\\\"DS004\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:30\\\",\\\"break_to\\\":\\\"14:30\\\",\\\"break_duration\\\":\\\"00:30\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:03\\\",\\\"core_to\\\":\\\"16:57\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"13\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":4,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":4,\\\"code\\\":\\\"DS004\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:30\\\",\\\"break_to\\\":\\\"14:30\\\",\\\"break_duration\\\":\\\"00:30\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:03\\\",\\\"core_to\\\":\\\"16:57\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"13\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":4,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":4,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":4,\\\"code\\\":\\\"DS004\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:30\\\",\\\"break_to\\\":\\\"14:30\\\",\\\"break_duration\\\":\\\"00:30\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:03\\\",\\\"core_to\\\":\\\"16:57\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"13\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":5,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":4,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":4,\\\"code\\\":\\\"DS004\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch OT Approval & Cost Centre\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:30\\\",\\\"break_to\\\":\\\"14:30\\\",\\\"break_duration\\\":\\\"00:30\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:03\\\",\\\"core_to\\\":\\\"16:57\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"13\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":6,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":8,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":8,\\\"code\\\":\\\"RD004\\\",\\\"description\\\":\\\"Rest Day @ x2 OT (No break deducted) OT Approval\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"6\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":7,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":7,\\\"code\\\":\\\"RD003\\\",\\\"description\\\":\\\"Rest Day @ x1.5 OT (No break deducted) OT Approval\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"14\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}}]}\"\n        },\n        {\n            \"period_schedule_id\": 3,\n            \"code\": \"PS03\",\n            \"description\": \"Open Shift Mon-Fri - NO UA - 37.5 hours\",\n            \"json\": \"{\\\"period_schedule_id\\\":3,\\\"code\\\":\\\"PS03\\\",\\\"description\\\":\\\"Open Shift Mon-Fri - NO UA - 37.5 hours\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":0,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":0,\\\"anchor_start_date\\\":\\\"2023-04-12 00:00:00.000\\\",\\\"rate_monitoring\\\":[],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":null,\\\"amount\\\":[{\\\"amount\\\":\\\"37:30\\\",\\\"timepot\\\":1}],\\\"maximum_debit\\\":\\\"-\\\",\\\"maximum_credit\\\":\\\"\\\",\\\"script_description\\\":\\\"Period Compensation (take from lowest to highest)\\\",\\\"script_trs_description\\\":\\\"Period Compensation (take from lowest to highest) (Dist)\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":9,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":9,\\\"code\\\":\\\"DS005\\\",\\\"description\\\":\\\"Open Shift - None Clocking 7.5 hours with Surplus\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":1,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":2,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":9,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":9,\\\"code\\\":\\\"DS005\\\",\\\"description\\\":\\\"Open Shift - None Clocking 7.5 hours with Surplus\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":1,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":9,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":9,\\\"code\\\":\\\"DS005\\\",\\\"description\\\":\\\"Open Shift - None Clocking 7.5 hours with Surplus\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":1,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":4,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":9,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":9,\\\"code\\\":\\\"DS005\\\",\\\"description\\\":\\\"Open Shift - None Clocking 7.5 hours with Surplus\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":1,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":5,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":9,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":9,\\\"code\\\":\\\"DS005\\\",\\\"description\\\":\\\"Open Shift - None Clocking 7.5 hours with Surplus\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":1,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":6,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":8,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":8,\\\"code\\\":\\\"RD004\\\",\\\"description\\\":\\\"Rest Day @ x2 OT (No break deducted) OT Approval\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"6\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":7,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":7,\\\"code\\\":\\\"RD003\\\",\\\"description\\\":\\\"Rest Day @ x1.5 OT (No break deducted) OT Approval\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"14\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Daily Overtime Authorisation cost centre daily v1.2 DEMO \\\",\\\"timepot_rounding_type\\\":0}}]}\"\n        },\n        {\n            \"period_schedule_id\": 4,\n            \"code\": \"CLIP0001\",\n            \"description\": \"09:00-17:30 M-Th 17:00 Fr\",\n            \"json\": \"{\\\"period_schedule_id\\\":4,\\\"code\\\":\\\"CLIP0001\\\",\\\"description\\\":\\\"09:00-17:30 M-Th 17:00 Fr\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":0,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":0,\\\"anchor_start_date\\\":\\\"1970-01-01 00:00:00.000\\\",\\\"rate_monitoring\\\":[],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":\\\"1900-01-01 00:00:00.000\\\",\\\"amount\\\":[{\\\"amount\\\":\\\"38:00\\\",\\\"timepot\\\":1},{\\\"amount\\\":\\\"999:00\\\",\\\"timepot\\\":2}],\\\"maximum_debit\\\":\\\"-\\\",\\\"maximum_credit\\\":\\\"\\\",\\\"script_description\\\":\\\"Standard\\\",\\\"script_trs_description\\\":\\\"Period Compensation (take from highest to lowest) (Dist)\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":11,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":11,\\\"code\\\":\\\"CLIP0001\\\",\\\"description\\\":\\\"09:00-17:30 60 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 04:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:30:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 03:30:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"17:29\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"00:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"00:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"00:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"00:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"04:00\\\",\\\"band_to\\\":\\\"03:30\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"20:00\\\",\\\"timepot\\\":\\\"2\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Job v1.6 (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":2,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":11,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":11,\\\"code\\\":\\\"CLIP0001\\\",\\\"description\\\":\\\"09:00-17:30 60 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 04:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:30:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 03:30:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"17:29\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"00:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"00:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"00:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"00:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"04:00\\\",\\\"band_to\\\":\\\"03:30\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"20:00\\\",\\\"timepot\\\":\\\"2\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Job v1.6 (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":11,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":11,\\\"code\\\":\\\"CLIP0001\\\",\\\"description\\\":\\\"09:00-17:30 60 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 04:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:30:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 03:30:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"17:29\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"00:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"00:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"00:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"00:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"04:00\\\",\\\"band_to\\\":\\\"03:30\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"20:00\\\",\\\"timepot\\\":\\\"2\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Job v1.6 (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":0,\\\"default\\\":0,\\\"daily_schedule_id\\\":12,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":12,\\\"code\\\":\\\"1800020X\\\",\\\"description\\\":\\\"18:00-02:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 18:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"14:00\\\",\\\"band_to\\\":\\\"18:00\\\"},{\\\"band_from\\\":\\\"18:00\\\",\\\"band_to\\\":\\\"02:00\\\"},{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"06:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:59\\\",\\\"timepot\\\":\\\"11\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:59\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:59\\\",\\\"timepot\\\":\\\"11\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:59:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":1,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Roster Daily v21.4 (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":1,\\\"default\\\":0,\\\"daily_schedule_id\\\":13,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":13,\\\"code\\\":\\\"07001815\\\",\\\"description\\\":\\\"07:00-18:15\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 03:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 07:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 18:15:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:15:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"07:00\\\",\\\"rounding_to\\\":\\\"18:15\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"07:00\\\",\\\"global_grace_to\\\":\\\"18:15\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"03:00\\\",\\\"band_to\\\":\\\"07:00\\\"},{\\\"band_from\\\":\\\"07:00\\\",\\\"band_to\\\":\\\"18:15\\\"},{\\\"band_from\\\":\\\"18:15\\\",\\\"band_to\\\":\\\"22:15\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:59\\\",\\\"timepot\\\":\\\"11\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:59\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:59\\\",\\\"timepot\\\":\\\"11\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Roster Daily v21.4 (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":6,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":11,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":11,\\\"code\\\":\\\"CLIP0001\\\",\\\"description\\\":\\\"09:00-17:30 60 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 04:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:30:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 03:30:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"17:29\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"00:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"00:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"00:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"00:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"00:03\\\",\\\"global_grace_out\\\":\\\"00:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"04:00\\\",\\\"band_to\\\":\\\"03:30\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"20:00\\\",\\\"timepot\\\":\\\"2\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Job v1.6 (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":14,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":14,\\\"code\\\":\\\"0900170X\\\",\\\"description\\\":\\\"09:00-17:00 60 min lunch deducted\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"16:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"20:00\\\",\\\"timepot\\\":\\\"2\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Generate Swipes Job v1.3 (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":8,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":15,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":15,\\\"code\\\":\\\"CLIP0005\\\",\\\"description\\\":\\\"Rest Day x1.5 - Clip\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 16:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"3\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":9,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":16,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":16,\\\"code\\\":\\\"CLIP0006\\\",\\\"description\\\":\\\"Rest Day x2 - Clip\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 16:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}}]}\"\n        },\n        {\n            \"period_schedule_id\": 5,\n            \"code\": \"SALESEXE\",\n            \"description\": \"08:00 - 17:00\",\n            \"json\": \"{\\\"period_schedule_id\\\":5,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":0,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":0,\\\"anchor_start_date\\\":null,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"37:50\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":null,\\\"amount\\\":[{\\\"amount\\\":\\\"37:50\\\",\\\"timepot\\\":1}],\\\"maximum_debit\\\":\\\"-\\\",\\\"maximum_credit\\\":null,\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Standard Period (Dist)\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":2,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":4,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":5,\\\"contribute\\\":0,\\\"default\\\":1,\\\"daily_schedule_id\\\":18,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":18,\\\"code\\\":\\\"SALESEXE\\\",\\\"description\\\":\\\"08:00 - 17:00\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:30:00.000\\\",\\\"notepad\\\":\\\"\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"13:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"08:00\\\",\\\"core_to\\\":\\\"17:00\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"08:00\\\",\\\"grace_to\\\":\\\"08:05\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"08:00\\\",\\\"band_to\\\":\\\"17:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"08:00\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"03:00\\\",\\\"timepot\\\":\\\"4\\\"},{\\\"amount\\\":\\\"05:00\\\",\\\"timepot\\\":\\\"5\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 08:00:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"12:00\\\",\\\"break_after_deduct\\\":\\\"13:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[{\\\"threshold\\\":\\\"08:00\\\",\\\"rate\\\":1},{\\\"threshold\\\":\\\"03:00\\\",\\\"rate\\\":3},{\\\"threshold\\\":\\\"05:00\\\",\\\"rate\\\":5},{\\\"threshold\\\":\\\"10:00\\\",\\\"rate\\\":6}],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":0,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":6,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":10,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":10,\\\"code\\\":\\\"RD005\\\",\\\"description\\\":\\\"Rest Day @ Surplus  (No break deducted)\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":10,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":10,\\\"code\\\":\\\"RD005\\\",\\\"description\\\":\\\"Rest Day @ Surplus  (No break deducted)\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"7\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":\\\"Standard\\\",\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":null},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":null}}]}\"\n        },\n        {\n            \"period_schedule_id\": 7,\n            \"code\": \"FLEXIPS1\",\n            \"description\": \"08:15-17:00 Mon-Thur/ 08:30-17:00 Fri (Flexi-Time)\",\n            \"json\": \"{\\\"period_schedule_id\\\":7,\\\"code\\\":\\\"FLEXIPS1\\\",\\\"description\\\":\\\"08:15-17:00 Mon-Thur\\\\/ 08:30-17:00 Fri (Flexi-Time)\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":1,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":1,\\\"anchor_start_date\\\":null,\\\"rate_monitoring\\\":[],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":null,\\\"amount\\\":[],\\\"maximum_debit\\\":\\\"-8:00\\\",\\\"maximum_credit\\\":\\\"15:00\\\",\\\"script_description\\\":null,\\\"script_trs_description\\\":\\\"Standard Period (Dist)\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":26,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":26,\\\"code\\\":\\\"FLEXI001\\\",\\\"description\\\":\\\"08:15-17:00 1hr lunch deducted\\\",\\\"schedule_type\\\":1,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:15:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"10:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"14:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"22:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"08:15\\\"},{\\\"band_from\\\":\\\"08:15\\\",\\\"band_to\\\":\\\"17:00\\\"},{\\\"band_from\\\":\\\"17:00\\\",\\\"band_to\\\":\\\"22:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":2,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":26,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":26,\\\"code\\\":\\\"FLEXI001\\\",\\\"description\\\":\\\"08:15-17:00 1hr lunch deducted\\\",\\\"schedule_type\\\":1,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:15:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"10:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"14:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"22:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"08:15\\\"},{\\\"band_from\\\":\\\"08:15\\\",\\\"band_to\\\":\\\"17:00\\\"},{\\\"band_from\\\":\\\"17:00\\\",\\\"band_to\\\":\\\"22:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":26,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":26,\\\"code\\\":\\\"FLEXI001\\\",\\\"description\\\":\\\"08:15-17:00 1hr lunch deducted\\\",\\\"schedule_type\\\":1,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:15:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"10:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"14:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"22:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"08:15\\\"},{\\\"band_from\\\":\\\"08:15\\\",\\\"band_to\\\":\\\"17:00\\\"},{\\\"band_from\\\":\\\"17:00\\\",\\\"band_to\\\":\\\"22:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":4,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":26,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":26,\\\"code\\\":\\\"FLEXI001\\\",\\\"description\\\":\\\"08:15-17:00 1hr lunch deducted\\\",\\\"schedule_type\\\":1,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:15:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"10:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"14:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"22:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"08:15\\\"},{\\\"band_from\\\":\\\"08:15\\\",\\\"band_to\\\":\\\"17:00\\\"},{\\\"band_from\\\":\\\"17:00\\\",\\\"band_to\\\":\\\"22:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:45:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":5,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":27,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":27,\\\"code\\\":\\\"FLEXI002\\\",\\\"description\\\":\\\"08:30-17:00 1hr lunch deducted\\\",\\\"schedule_type\\\":1,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:30:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"01:00\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"10:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"14:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"22:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"22:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"08:30\\\"},{\\\"band_from\\\":\\\"08:30\\\",\\\"band_to\\\":\\\"17:00\\\"},{\\\"band_from\\\":\\\"17:00\\\",\\\"band_to\\\":\\\"22:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":6,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":28,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":28,\\\"code\\\":\\\"FLEXREST\\\",\\\"description\\\":\\\"Flexi Rest Day\\\",\\\"schedule_type\\\":1,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:30:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"22:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"22:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"08:30\\\"},{\\\"band_from\\\":\\\"08:30\\\",\\\"band_to\\\":\\\"17:00\\\"},{\\\"band_from\\\":\\\"17:00\\\",\\\"band_to\\\":\\\"22:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":28,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":28,\\\"code\\\":\\\"FLEXREST\\\",\\\"description\\\":\\\"Flexi Rest Day\\\",\\\"schedule_type\\\":1,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 08:30:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 22:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"22:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"22:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"08:30\\\"},{\\\"band_from\\\":\\\"08:30\\\",\\\"band_to\\\":\\\"17:00\\\"},{\\\"band_from\\\":\\\"17:00\\\",\\\"band_to\\\":\\\"22:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_2\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_3\\\":[{\\\"amount\\\":\\\"23:45\\\",\\\"timepot\\\":\\\"1\\\"}],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily (Dist)\\\",\\\"timepot_rounding_type\\\":0}}]}\"\n        },\n        {\n            \"period_schedule_id\": 8,\n            \"code\": \"PS04\",\n            \"description\": \"09:00 - 17:00 M - F With Cost Centre Link\",\n            \"json\": \"{\\\"period_schedule_id\\\":8,\\\"code\\\":\\\"PS04\\\",\\\"description\\\":\\\"09:00 - 17:00 M - F With Cost Centre Link\\\",\\\"allocation_start_day\\\":0,\\\"allocation_weeks\\\":1,\\\"pay_period_type\\\":0,\\\"pay_period_calendar_start_date\\\":1,\\\"schedule_type\\\":0,\\\"anchor_start_date\\\":null,\\\"rate_monitoring\\\":[],\\\"cascade_update\\\":0,\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"pay_periods\\\":[{\\\"week\\\":1,\\\"date\\\":null,\\\"amount\\\":[{\\\"amount\\\":\\\"37:30\\\",\\\"timepot\\\":1},{\\\"amount\\\":\\\"99:00\\\",\\\"timepot\\\":4}],\\\"maximum_debit\\\":\\\"-\\\",\\\"maximum_credit\\\":\\\"\\\",\\\"script_description\\\":\\\"Period Compensation (take from lowest to highest)\\\",\\\"script_trs_description\\\":\\\"Period clawback Demo\\\"}],\\\"schedule_allocation\\\":[{\\\"week\\\":1,\\\"day\\\":1,\\\"position\\\":1,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":17,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":17,\\\"code\\\":\\\"DS06\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"16:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Attendance with cost centre daily v1.2 NP\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":2,\\\"position\\\":2,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":17,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":17,\\\"code\\\":\\\"DS06\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"16:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Attendance with cost centre daily v1.2 NP\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":3,\\\"position\\\":3,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":17,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":17,\\\"code\\\":\\\"DS06\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"16:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Attendance with cost centre daily v1.2 NP\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":4,\\\"position\\\":4,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":17,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":17,\\\"code\\\":\\\"DS06\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"16:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Attendance with cost centre daily v1.2 NP\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":5,\\\"position\\\":5,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":17,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":17,\\\"code\\\":\\\"DS06\\\",\\\"description\\\":\\\"09:00 - 17:00 30 min lunch [deduct] Cost Centre link\\\",\\\"schedule_type\\\":0,\\\"workday\\\":1,\\\"target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"earliest_start_time\\\":\\\"1899-12-30 05:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 09:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 17:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 21:00:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[{\\\"break_from\\\":\\\"12:00\\\",\\\"break_to\\\":\\\"14:00\\\",\\\"break_duration\\\":\\\"0:30\\\",\\\"script_description\\\":\\\"Auto Deduct\\\",\\\"script_trs_description\\\":\\\"Auto Deduct (Dist)\\\"}],\\\"break_times_sond\\\":0,\\\"core_times\\\":[{\\\"core_from\\\":\\\"09:01\\\",\\\"core_to\\\":\\\"11:59\\\"},{\\\"core_from\\\":\\\"14:01\\\",\\\"core_to\\\":\\\"16:59\\\"}],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"05:00\\\",\\\"rounding_to\\\":\\\"08:30\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"08:30\\\",\\\"rounding_to\\\":\\\"09:00\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"09:00\\\",\\\"rounding_to\\\":\\\"17:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"},{\\\"rounding_from\\\":\\\"17:00\\\",\\\"rounding_to\\\":\\\"17:30\\\",\\\"rounding_duration\\\":\\\"0:30\\\"},{\\\"rounding_from\\\":\\\"17:30\\\",\\\"rounding_to\\\":\\\"21:00\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[{\\\"grace_from\\\":\\\"09:00\\\",\\\"grace_to\\\":\\\"09:03\\\",\\\"grace_type\\\":1}],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"05:00\\\",\\\"band_to\\\":\\\"21:00\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"07:30\\\",\\\"timepot\\\":\\\"1\\\"},{\\\"amount\\\":\\\"16:00\\\",\\\"timepot\\\":\\\"4\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":\\\"1899-12-30 07:30:00.000\\\",\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Attendance with cost centre daily v1.2 NP\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":6,\\\"position\\\":6,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":30,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":30,\\\"code\\\":\\\"COPY0001\\\",\\\"description\\\":\\\"Rest Day @ x1.5 OT (No break deducted) Cost Centre Link\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"18:00\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"14\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":null,\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily Cost Centre v1.3 (Dist)NP\\\",\\\"timepot_rounding_type\\\":0}},{\\\"week\\\":1,\\\"day\\\":7,\\\"position\\\":7,\\\"contribute\\\":1,\\\"default\\\":1,\\\"daily_schedule_id\\\":29,\\\"daily_schedule\\\":{\\\"daily_schedule_id\\\":29,\\\"code\\\":\\\"DS07\\\",\\\"description\\\":\\\"Rest Day @ x2 OT (No break deducted) Cost Centre Link\\\",\\\"schedule_type\\\":0,\\\"workday\\\":0,\\\"target_time\\\":null,\\\"earliest_start_time\\\":\\\"1899-12-30 02:00:00.000\\\",\\\"start_time\\\":\\\"1899-12-30 06:00:00.000\\\",\\\"finish_time\\\":\\\"1899-12-30 14:00:00.000\\\",\\\"latest_finish_time\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"notepad\\\":\\\"{\\\\\\\\rtf1\\\\\\\\ansi\\\\\\\\ansicpg1252\\\\\\\\deff0\\\\\\\\deflang2057{\\\\\\\\fonttbl{\\\\\\\\f0\\\\\\\\fnil\\\\\\\\fcharset0 MS Sans Serif;}}\\\\r\\\\n\\\\\\\\viewkind4\\\\\\\\uc1\\\\\\\\pard\\\\\\\\f0\\\\\\\\fs17 \\\\r\\\\n\\\\\\\\par }\\\\r\\\\n\\\",\\\"break_times\\\":[],\\\"break_times_sond\\\":0,\\\"core_times\\\":[],\\\"core_times_sond\\\":0,\\\"rounding_times\\\":[{\\\"rounding_from\\\":\\\"02:00\\\",\\\"rounding_to\\\":\\\"23:45\\\",\\\"rounding_duration\\\":\\\"0:15\\\"}],\\\"rounding_times_sond\\\":0,\\\"grace_times\\\":[],\\\"grace_times_sond\\\":0,\\\"global_grace_times\\\":[{\\\"global_grace_from\\\":\\\"02:00\\\",\\\"global_grace_to\\\":\\\"23:45\\\",\\\"global_grace_in\\\":\\\"0:03\\\",\\\"global_grace_out\\\":\\\"0:00\\\"}],\\\"global_grace_times_sond\\\":0,\\\"band_times\\\":[{\\\"band_from\\\":\\\"02:00\\\",\\\"band_to\\\":\\\"23:45\\\"}],\\\"band_times_sond\\\":0,\\\"band_amount_1\\\":[{\\\"amount\\\":\\\"23:00\\\",\\\"timepot\\\":\\\"6\\\"}],\\\"band_amount_2\\\":[],\\\"band_amount_3\\\":[],\\\"band_amount_4\\\":[],\\\"band_amount_5\\\":[],\\\"band_amount_6\\\":[],\\\"band_amount_7\\\":[],\\\"band_amount_8\\\":[],\\\"band_amount_9\\\":[],\\\"band_amount_10\\\":[],\\\"band_amount_11\\\":[],\\\"band_amount_12\\\":[],\\\"script_id\\\":null,\\\"absence_target_time\\\":null,\\\"unallocated_threshold\\\":\\\"1899-12-30 23:45:00.000\\\",\\\"timepot_rounding_duration\\\":null,\\\"break_after\\\":{\\\"break_after_amount\\\":\\\"00:00\\\",\\\"break_after_deduct\\\":\\\"00:00\\\",\\\"break_after_timepot\\\":\\\"1\\\",\\\"break_after_each\\\":\\\"0\\\"},\\\"redundant\\\":0,\\\"rate_monitoring\\\":[],\\\"remove_unauthorised_absence\\\":0,\\\"contribute\\\":1,\\\"script_trs_id\\\":\\\"Standard Daily Cost Centre v1.3 (Dist)NP\\\",\\\"timepot_rounding_type\\\":0}}]}\"\n        }\n    ]\n}"}],"_postman_id":"2919be7d-c554-44ad-a9c9-027028bfaacf"}],"id":"21403312-4d71-441d-bfd8-2b9473154dbc","_postman_id":"21403312-4d71-441d-bfd8-2b9473154dbc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Photo Category","item":[{"name":"Get Photo Categories","id":"10f8630d-ac2d-475b-999f-d1cfebc5170e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/photo-categories","description":"<p>Gets the list of photo categories. If called from the employee context, the PWA policy will be applied to restrict which categories are visible.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["photo-categories"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"fc43f8e3-ebd1-442d-8a1c-585286035ca2","name":"Get Photo Categories","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/photo-categories"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:58:38 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"82"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"photo_ref_id\": 1,\n            \"description\": \"All Photos\"\n        }\n    ]\n}"}],"_postman_id":"10f8630d-ac2d-475b-999f-d1cfebc5170e"}],"id":"86e970b5-d9ea-4783-9bd3-855768d70d87","_postman_id":"86e970b5-d9ea-4783-9bd3-855768d70d87","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Personnel Range","item":[{"name":"Get Personnel Ranges","id":"2f1706ba-6945-4216-af3a-8626493c3fe1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/roster-ranges?context=user","description":"<p>This endpoint is only available if accessing the API as a user or as an employee with the parameter ?context=user specified. The endpoint will use return a list of personnel ranges under the user's remit.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["roster-ranges"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"context","value":"user"}],"variable":[]}},"response":[{"id":"d215499c-e5d7-456b-9bf1-a5caacad4438","name":"Get Personnel Ranges","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://demo.ait-connected.co.uk/Roster/rest/v1/roster-ranges?context=user","host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"path":["roster-ranges"],"query":[{"key":"context","value":"user"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:58:48 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"246"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"roster_range_id\": 2,\n            \"description\": \"All Employees exc. leavers\"\n        },\n        {\n            \"roster_range_id\": 3,\n            \"description\": \"Leavers\"\n        },\n        {\n            \"roster_range_id\": 6,\n            \"description\": \"Visitors\"\n        },\n        {\n            \"roster_range_id\": 8,\n            \"description\": \"All Employees\"\n        }\n    ]\n}"}],"_postman_id":"2f1706ba-6945-4216-af3a-8626493c3fe1"}],"id":"ce230677-6cb3-43c1-882e-445781ec4620","_postman_id":"ce230677-6cb3-43c1-882e-445781ec4620","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"PWA Policy","item":[{"name":"Get PWA Policies","id":"734707ad-db85-4b25-bfb2-48d8ee404c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/pwa-policies","description":"<p>Gets PWA policies in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["pwa-policies"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"410eedfa-6b3d-4d5b-9bcf-285042814ad4","name":"Get PWA Policies","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/pwa-policies"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:59:02 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"47969"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"pwa_policy_id\": 3,\n            \"timezone\": \"Europe/London\",\n            \"description\": \"Demo PWA Policy\",\n            \"terminal_ids\": \"35,39,1,22,37,42\",\n            \"terminal_id\": 1,\n            \"data\": {\n                \"Personnel\": {\n                    \"View\": {\n                        \"Address\": {\n                            \"value\": 1\n                        },\n                        \"Postcode\": {\n                            \"value\": 1\n                        },\n                        \"Telephone\": {\n                            \"value\": 1\n                        },\n                        \"Mobile\": {\n                            \"value\": 1\n                        },\n                        \"Email\": {\n                            \"value\": 1\n                        },\n                        \"Title\": {\n                            \"value\": 1\n                        },\n                        \"First name\": {\n                            \"value\": 1\n                        },\n                        \"Middle name\": {\n                            \"value\": 1\n                        },\n                        \"Last name\": {\n                            \"value\": 1\n                        },\n                        \"Date of birth\": {\n                            \"value\": 1\n                        },\n                        \"Gender\": {\n                            \"value\": 1\n                        },\n                        \"Marital status\": {\n                            \"value\": 1\n                        },\n                        \"Nationality\": {\n                            \"value\": 1\n                        },\n                        \"NI code\": {\n                            \"value\": 1\n                        },\n                        \"Passport number\": {\n                            \"value\": 1\n                        },\n                        \"Visa number\": {\n                            \"value\": 1\n                        },\n                        \"Employee ID\": {\n                            \"value\": 1\n                        },\n                        \"Badge number\": {\n                            \"value\": 1\n                        },\n                        \"Payroll number\": {\n                            \"value\": 1\n                        },\n                        \"Start date\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 1\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 2\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 3\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 4\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 5\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 6\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 7\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 8\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 9\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 10\": {\n                            \"value\": 1\n                        },\n                        \"NOK name\": {\n                            \"value\": 1\n                        },\n                        \"NOK telephone\": {\n                            \"value\": 1\n                        },\n                        \"NOK relationship\": {\n                            \"value\": 1\n                        },\n                        \"Bank name\": {\n                            \"value\": 0\n                        },\n                        \"Bank address\": {\n                            \"value\": 0\n                        },\n                        \"Telephone number\": {\n                            \"value\": 0\n                        },\n                        \"Account name\": {\n                            \"value\": 0\n                        },\n                        \"Account number\": {\n                            \"value\": 0\n                        },\n                        \"Sort code\": {\n                            \"value\": 0\n                        },\n                        \"Pension name\": {\n                            \"value\": 0\n                        },\n                        \"Pension number\": {\n                            \"value\": 0\n                        },\n                        \"Pension details\": {\n                            \"value\": 0\n                        },\n                        \"Date of entry\": {\n                            \"value\": 0\n                        },\n                        \"AVC contribution\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Edit\": {\n                        \"Address\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Postcode\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Telephone\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Mobile\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Email\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Title\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"First name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Middle name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Last name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Date of birth\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Gender\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Marital status\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Nationality\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NI code\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Passport number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Visa number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Badge number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Payroll number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Start date\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 1\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 2\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 3\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 4\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 5\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 6\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 7\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 8\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 9\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 10\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK telephone\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK relationship\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Bank name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Bank address\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Telephone number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Account name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Account number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Sort code\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension details\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Date of entry\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"AVC contribution\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Training\": {\n                        \"value\": 1\n                    },\n                    \"Accident\": {\n                        \"value\": 1\n                    },\n                    \"AddDocument\": {\n                        \"Authorisation required\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"1\": {\n                                \"value\": 1\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"-10\": {\n                                \"value\": 0\n                            },\n                            \"-13\": {\n                                \"value\": 0\n                            },\n                            \"-2\": {\n                                \"value\": 0\n                            },\n                            \"-3\": {\n                                \"value\": 0\n                            },\n                            \"-12\": {\n                                \"value\": 0\n                            },\n                            \"-4\": {\n                                \"value\": 0\n                            },\n                            \"-7\": {\n                                \"value\": 0\n                            },\n                            \"-6\": {\n                                \"value\": 0\n                            },\n                            \"-5\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 0\n                            },\n                            \"-11\": {\n                                \"value\": 0\n                            },\n                            \"-8\": {\n                                \"value\": 0\n                            },\n                            \"-9\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewDocument\": {\n                        \"Distribution\": {\n                            \"value\": 0\n                        },\n                        \"Enforce priority order\": {\n                            \"value\": 0\n                        },\n                        \"Company\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"AddMessage\": {\n                        \"Authorisation required\": {\n                            \"value\": 0\n                        },\n                        \"Categories\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"8\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewMessage\": {\n                        \"Distribution\": {\n                            \"value\": 0\n                        },\n                        \"Enforce priority order\": {\n                            \"value\": 0\n                        },\n                        \"Company\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"AddForm\": {\n                        \"Authorisation required\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"EditForm\": {\n                        \"Allow edit other\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewForm\": {\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"MarkSafe\": {\n                        \"value\": 0\n                    },\n                    \"Password\": {\n                        \"value\": 1\n                    },\n                    \"MFA\": {\n                        \"value\": 1\n                    },\n                    \"Passkey\": {\n                        \"value\": 0\n                    },\n                    \"Fingerprint\": {\n                        \"value\": 0\n                    },\n                    \"value\": 0\n                },\n                \"Attendance\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 1\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NFC booking\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Rates\": {\n                            \"Rate 1\": {\n                                \"value\": 1\n                            },\n                            \"Rate 2\": {\n                                \"value\": 1\n                            },\n                            \"Rate 3\": {\n                                \"value\": 1\n                            },\n                            \"Rate 4\": {\n                                \"value\": 1\n                            },\n                            \"Rate 5\": {\n                                \"value\": 1\n                            },\n                            \"Rate 6\": {\n                                \"value\": 0\n                            },\n                            \"Rate 7\": {\n                                \"value\": 0\n                            },\n                            \"Rate 8\": {\n                                \"value\": 0\n                            },\n                            \"Rate 9\": {\n                                \"value\": 0\n                            },\n                            \"Rate 10\": {\n                                \"value\": 0\n                            },\n                            \"Rate 11\": {\n                                \"value\": 0\n                            },\n                            \"Rate 12\": {\n                                \"value\": 1\n                            },\n                            \"Rate 13\": {\n                                \"value\": 0\n                            },\n                            \"Rate 14\": {\n                                \"value\": 1\n                            },\n                            \"Rate 15\": {\n                                \"value\": 0\n                            },\n                            \"Rate 16\": {\n                                \"value\": 0\n                            },\n                            \"Rate 17\": {\n                                \"value\": 0\n                            },\n                            \"Rate 18\": {\n                                \"value\": 0\n                            },\n                            \"Rate 19\": {\n                                \"value\": 0\n                            },\n                            \"Rate 20\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Costs\": {\n                            \"Rate 1\": {\n                                \"value\": 1\n                            },\n                            \"Rate 2\": {\n                                \"value\": 0\n                            },\n                            \"Rate 3\": {\n                                \"value\": 0\n                            },\n                            \"Rate 4\": {\n                                \"value\": 0\n                            },\n                            \"Rate 5\": {\n                                \"value\": 1\n                            },\n                            \"Rate 6\": {\n                                \"value\": 1\n                            },\n                            \"Rate 7\": {\n                                \"value\": 0\n                            },\n                            \"Rate 8\": {\n                                \"value\": 0\n                            },\n                            \"Rate 9\": {\n                                \"value\": 0\n                            },\n                            \"Rate 10\": {\n                                \"value\": 0\n                            },\n                            \"Rate 11\": {\n                                \"value\": 0\n                            },\n                            \"Rate 12\": {\n                                \"value\": 0\n                            },\n                            \"Rate 13\": {\n                                \"value\": 0\n                            },\n                            \"Rate 14\": {\n                                \"value\": 0\n                            },\n                            \"Rate 15\": {\n                                \"value\": 0\n                            },\n                            \"Rate 16\": {\n                                \"value\": 0\n                            },\n                            \"Rate 17\": {\n                                \"value\": 0\n                            },\n                            \"Rate 18\": {\n                                \"value\": 0\n                            },\n                            \"Rate 19\": {\n                                \"value\": 0\n                            },\n                            \"Rate 20\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Static registers\": {\n                            \"Static Register 1\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 2\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 3\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 4\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 5\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 6\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 7\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 8\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 9\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 10\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 11\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 12\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 13\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 14\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 15\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 16\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 17\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 18\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 19\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 20\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 21\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 22\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 23\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 24\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 25\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 26\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 27\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 28\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 29\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 30\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 31\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 32\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 33\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 34\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 35\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 36\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 37\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 38\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 39\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 40\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Flexitime\": {\n                            \"Opening balance\": {\n                                \"value\": 0\n                            },\n                            \"Target\": {\n                                \"value\": 0\n                            },\n                            \"Accumulated\": {\n                                \"value\": 0\n                            },\n                            \"Closing balance\": {\n                                \"value\": 0\n                            },\n                            \"Overspill\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Swipes\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Roster\": {\n                        \"Default schedules\": {\n                            \"value\": 1\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 0\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 1\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Shift requests\": {\n                        \"Default schedules\": {\n                            \"value\": 0\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 0\n                        },\n                        \"Absences\": {\n                            \"value\": 0\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 0\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Drop\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Swap\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Extra\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Accept\": {\n                            \"value\": 1\n                        },\n                        \"Drop cancel\": {\n                            \"value\": 1\n                        },\n                        \"Swap cancel\": {\n                            \"value\": 1\n                        },\n                        \"Extra cancel\": {\n                            \"value\": 1\n                        },\n                        \"Accept cancel\": {\n                            \"value\": 1\n                        },\n                        \"Filter\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Absence\": {\n                    \"Absence\": {\n                        \"Restrict range\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Restrict duration\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 1\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Cancel absence\": {\n                        \"Approved\": {\n                            \"value\": 1\n                        },\n                        \"Block\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 1\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Entitlement\": {\n                        \"Categories\": {\n                            \"Absence Category 1\": {\n                                \"value\": 1\n                            },\n                            \"Absence Category 2\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 3\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 4\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 5\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 6\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 7\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 8\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 9\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Time off\": {\n                        \"Anonymise names\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence colour\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 0\n                        },\n                        \"Anonymise absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"8\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"13\": {\n                                \"value\": 0\n                            },\n                            \"14\": {\n                                \"value\": 0\n                            },\n                            \"15\": {\n                                \"value\": 0\n                            },\n                            \"16\": {\n                                \"value\": 0\n                            },\n                            \"17\": {\n                                \"value\": 0\n                            },\n                            \"18\": {\n                                \"value\": 0\n                            },\n                            \"19\": {\n                                \"value\": 0\n                            },\n                            \"20\": {\n                                \"value\": 0\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 0\n                            },\n                            \"25\": {\n                                \"value\": 0\n                            },\n                            \"26\": {\n                                \"value\": 0\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 0\n                            },\n                            \"-2\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Filter\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Job\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Operation\": {\n                            \"value\": 1\n                        },\n                        \"Quantity\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Work\": {\n                            \"Swipes\": {\n                                \"value\": 0\n                            },\n                            \"Job\": {\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"value\": 0\n                            },\n                            \"Client\": {\n                                \"value\": 0\n                            },\n                            \"Schedule\": {\n                                \"value\": 0\n                            },\n                            \"Anomaly\": {\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"value\": 0\n                            },\n                            \"Divider\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Daily\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Overall\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Job\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Job\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"View assigned\": {\n                        \"value\": 1\n                    },\n                    \"View all\": {\n                        \"value\": 1\n                    },\n                    \"View\": {\n                        \"Summary\": {\n                            \"Job group\": {\n                                \"value\": 0\n                            },\n                            \"Site name\": {\n                                \"value\": 0\n                            },\n                            \"Site contact\": {\n                                \"value\": 0\n                            },\n                            \"Site phone\": {\n                                \"value\": 0\n                            },\n                            \"Site email\": {\n                                \"value\": 0\n                            },\n                            \"Client name\": {\n                                \"value\": 0\n                            },\n                            \"Client contact\": {\n                                \"value\": 0\n                            },\n                            \"Client phone\": {\n                                \"value\": 0\n                            },\n                            \"Client email\": {\n                                \"value\": 0\n                            },\n                            \"Site address\": {\n                                \"Include site name\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Parts\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Assignees\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Add\": {\n                        \"Parts\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Delete\": {\n                        \"Parts\": {\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Allow complete\": {\n                        \"value\": 1\n                    },\n                    \"Allow undo complete\": {\n                        \"value\": 1\n                    },\n                    \"Employee signature\": {\n                        \"Required\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Client signature\": {\n                        \"Required\": {\n                            \"value\": 0\n                        },\n                        \"Unavailable\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Cost Centre\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"value\": 1\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"value\": 1\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Rate\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Work\": {\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"Cost Centre\": {\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 1\n                            },\n                            \"Schedule\": {\n                                \"value\": 1\n                            },\n                            \"Anomaly\": {\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"value\": 1\n                            },\n                            \"Cost\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 0\n                            },\n                            \"Divider\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Daily\": {\n                            \"Time\": {\n                                \"value\": 1\n                            },\n                            \"Cost\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Overall\": {\n                            \"Time\": {\n                                \"value\": 1\n                            },\n                            \"Cost\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Cost Centre\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Rate\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Edit\": {\n                            \"Cost Centre\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Rate\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Delete\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Manager\": {\n                    \"Calendar\": {\n                        \"Birthday\": {\n                            \"value\": 1\n                        },\n                        \"Period schedule\": {\n                            \"value\": 0\n                        },\n                        \"Default schedules\": {\n                            \"value\": 1\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 0\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Personnel\": {\n                        \"value\": 1\n                    },\n                    \"Emergency\": {\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Terminal\": {\n                    \"Terminal\": {\n                        \"Disable\": {\n                            \"value\": 0\n                        },\n                        \"Autofocus\": {\n                            \"value\": 1\n                        },\n                        \"Attendance\": {\n                            \"PIN\": {\n                                \"value\": 1\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 1\n                            },\n                            \"Employee match\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Job Costing\": {\n                            \"PIN\": {\n                                \"value\": 0\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"Job required\": {\n                                    \"value\": 0\n                                },\n                                \"Operation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Allow zero\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 0\n                            },\n                            \"Job selectable\": {\n                                \"value\": 0\n                            },\n                            \"Job bound\": {\n                                \"value\": 0\n                            },\n                            \"Operation selectable\": {\n                                \"value\": 0\n                            },\n                            \"Operation bound\": {\n                                \"value\": 0\n                            },\n                            \"Employee match\": {\n                                \"value\": 0\n                            },\n                            \"Job match\": {\n                                \"value\": 0\n                            },\n                            \"Operation match\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Cost Centre\": {\n                            \"PIN\": {\n                                \"value\": 0\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"Cost centre required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 0\n                            },\n                            \"Cost centre selectable\": {\n                                \"value\": 0\n                            },\n                            \"Employee match\": {\n                                \"value\": 0\n                            },\n                            \"Cost centre match\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Dashboard\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Jobs\": {\n                        \"value\": 0\n                    },\n                    \"Documents\": {\n                        \"value\": 1\n                    },\n                    \"Messages\": {\n                        \"value\": 1\n                    },\n                    \"Absences\": {\n                        \"value\": 1\n                    },\n                    \"Summary\": {\n                        \"value\": 1\n                    },\n                    \"Flexitime\": {\n                        \"value\": 1\n                    },\n                    \"Entitlement\": {\n                        \"Categories\": {\n                            \"Absence Category 1\": {\n                                \"value\": 1\n                            },\n                            \"Absence Category 2\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 3\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 4\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 5\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 6\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 7\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 8\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 9\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                }\n            }\n        },\n        {\n            \"pwa_policy_id\": 13,\n            \"timezone\": \"Europe/London\",\n            \"description\": \"Standard PWA Policy\",\n            \"terminal_ids\": \"35,1,22\",\n            \"terminal_id\": 1,\n            \"data\": {\n                \"Personnel\": {\n                    \"View\": {\n                        \"Address\": {\n                            \"value\": 1\n                        },\n                        \"Postcode\": {\n                            \"value\": 1\n                        },\n                        \"Telephone\": {\n                            \"value\": 1\n                        },\n                        \"Mobile\": {\n                            \"value\": 1\n                        },\n                        \"Email\": {\n                            \"value\": 1\n                        },\n                        \"Title\": {\n                            \"value\": 1\n                        },\n                        \"First name\": {\n                            \"value\": 1\n                        },\n                        \"Middle name\": {\n                            \"value\": 1\n                        },\n                        \"Last name\": {\n                            \"value\": 1\n                        },\n                        \"Date of birth\": {\n                            \"value\": 1\n                        },\n                        \"Gender\": {\n                            \"value\": 1\n                        },\n                        \"Marital status\": {\n                            \"value\": 1\n                        },\n                        \"Nationality\": {\n                            \"value\": 1\n                        },\n                        \"NI code\": {\n                            \"value\": 1\n                        },\n                        \"Passport number\": {\n                            \"value\": 1\n                        },\n                        \"Visa number\": {\n                            \"value\": 1\n                        },\n                        \"Employee ID\": {\n                            \"value\": 1\n                        },\n                        \"Badge number\": {\n                            \"value\": 1\n                        },\n                        \"Payroll number\": {\n                            \"value\": 1\n                        },\n                        \"Start date\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 1\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 2\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 3\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 4\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 5\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 6\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 7\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 8\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 9\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 10\": {\n                            \"value\": 1\n                        },\n                        \"NOK name\": {\n                            \"value\": 1\n                        },\n                        \"NOK telephone\": {\n                            \"value\": 1\n                        },\n                        \"NOK relationship\": {\n                            \"value\": 1\n                        },\n                        \"Bank name\": {\n                            \"value\": 0\n                        },\n                        \"Bank address\": {\n                            \"value\": 0\n                        },\n                        \"Telephone number\": {\n                            \"value\": 0\n                        },\n                        \"Account name\": {\n                            \"value\": 0\n                        },\n                        \"Account number\": {\n                            \"value\": 0\n                        },\n                        \"Sort code\": {\n                            \"value\": 0\n                        },\n                        \"Pension name\": {\n                            \"value\": 0\n                        },\n                        \"Pension number\": {\n                            \"value\": 0\n                        },\n                        \"Pension details\": {\n                            \"value\": 0\n                        },\n                        \"Date of entry\": {\n                            \"value\": 0\n                        },\n                        \"AVC contribution\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Edit\": {\n                        \"Address\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Postcode\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Telephone\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Mobile\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Email\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Title\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"First name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Middle name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Last name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Date of birth\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Gender\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Marital status\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Nationality\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NI code\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Passport number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Visa number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Badge number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Payroll number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Start date\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 1\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 2\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 3\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 4\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 5\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 6\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 7\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 8\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 9\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 10\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK telephone\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK relationship\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Bank name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Bank address\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Telephone number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Account name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Account number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Sort code\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension details\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Date of entry\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"AVC contribution\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Training\": {\n                        \"value\": 1\n                    },\n                    \"Accident\": {\n                        \"value\": 1\n                    },\n                    \"AddDocument\": {\n                        \"Authorisation required\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"1\": {\n                                \"value\": 1\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"-10\": {\n                                \"value\": 0\n                            },\n                            \"-13\": {\n                                \"value\": 0\n                            },\n                            \"-2\": {\n                                \"value\": 0\n                            },\n                            \"-3\": {\n                                \"value\": 0\n                            },\n                            \"-12\": {\n                                \"value\": 0\n                            },\n                            \"-4\": {\n                                \"value\": 0\n                            },\n                            \"-7\": {\n                                \"value\": 0\n                            },\n                            \"-6\": {\n                                \"value\": 0\n                            },\n                            \"-5\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 0\n                            },\n                            \"-11\": {\n                                \"value\": 0\n                            },\n                            \"-8\": {\n                                \"value\": 0\n                            },\n                            \"-9\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewDocument\": {\n                        \"Distribution\": {\n                            \"value\": 0\n                        },\n                        \"Enforce priority order\": {\n                            \"value\": 0\n                        },\n                        \"Company\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"AddMessage\": {\n                        \"Authorisation required\": {\n                            \"value\": 0\n                        },\n                        \"Categories\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"8\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewMessage\": {\n                        \"Distribution\": {\n                            \"value\": 0\n                        },\n                        \"Enforce priority order\": {\n                            \"value\": 0\n                        },\n                        \"Company\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"AddForm\": {\n                        \"Authorisation required\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"13\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"EditForm\": {\n                        \"Allow edit other\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"13\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewForm\": {\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"MarkSafe\": {\n                        \"value\": 0\n                    },\n                    \"Password\": {\n                        \"value\": 1\n                    },\n                    \"MFA\": {\n                        \"value\": 1\n                    },\n                    \"Passkey\": {\n                        \"value\": 0\n                    },\n                    \"Fingerprint\": {\n                        \"value\": 0\n                    },\n                    \"value\": 0\n                },\n                \"Attendance\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 1\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"NFC booking\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Rates\": {\n                            \"Rate 1\": {\n                                \"value\": 1\n                            },\n                            \"Rate 2\": {\n                                \"value\": 1\n                            },\n                            \"Rate 3\": {\n                                \"value\": 1\n                            },\n                            \"Rate 4\": {\n                                \"value\": 1\n                            },\n                            \"Rate 5\": {\n                                \"value\": 1\n                            },\n                            \"Rate 6\": {\n                                \"value\": 0\n                            },\n                            \"Rate 7\": {\n                                \"value\": 0\n                            },\n                            \"Rate 8\": {\n                                \"value\": 0\n                            },\n                            \"Rate 9\": {\n                                \"value\": 0\n                            },\n                            \"Rate 10\": {\n                                \"value\": 0\n                            },\n                            \"Rate 11\": {\n                                \"value\": 0\n                            },\n                            \"Rate 12\": {\n                                \"value\": 1\n                            },\n                            \"Rate 13\": {\n                                \"value\": 0\n                            },\n                            \"Rate 14\": {\n                                \"value\": 1\n                            },\n                            \"Rate 15\": {\n                                \"value\": 0\n                            },\n                            \"Rate 16\": {\n                                \"value\": 0\n                            },\n                            \"Rate 17\": {\n                                \"value\": 0\n                            },\n                            \"Rate 18\": {\n                                \"value\": 0\n                            },\n                            \"Rate 19\": {\n                                \"value\": 0\n                            },\n                            \"Rate 20\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Costs\": {\n                            \"Rate 1\": {\n                                \"value\": 1\n                            },\n                            \"Rate 2\": {\n                                \"value\": 0\n                            },\n                            \"Rate 3\": {\n                                \"value\": 0\n                            },\n                            \"Rate 4\": {\n                                \"value\": 0\n                            },\n                            \"Rate 5\": {\n                                \"value\": 1\n                            },\n                            \"Rate 6\": {\n                                \"value\": 1\n                            },\n                            \"Rate 7\": {\n                                \"value\": 0\n                            },\n                            \"Rate 8\": {\n                                \"value\": 0\n                            },\n                            \"Rate 9\": {\n                                \"value\": 0\n                            },\n                            \"Rate 10\": {\n                                \"value\": 0\n                            },\n                            \"Rate 11\": {\n                                \"value\": 0\n                            },\n                            \"Rate 12\": {\n                                \"value\": 0\n                            },\n                            \"Rate 13\": {\n                                \"value\": 0\n                            },\n                            \"Rate 14\": {\n                                \"value\": 0\n                            },\n                            \"Rate 15\": {\n                                \"value\": 0\n                            },\n                            \"Rate 16\": {\n                                \"value\": 0\n                            },\n                            \"Rate 17\": {\n                                \"value\": 0\n                            },\n                            \"Rate 18\": {\n                                \"value\": 0\n                            },\n                            \"Rate 19\": {\n                                \"value\": 0\n                            },\n                            \"Rate 20\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Static registers\": {\n                            \"Static Register 1\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 2\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 3\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 4\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 5\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 6\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 7\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 8\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 9\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 10\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 11\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 12\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 13\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 14\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 15\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 16\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 17\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 18\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 19\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 20\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 21\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 22\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 23\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 24\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 25\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 26\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 27\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 28\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 29\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 30\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 31\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 32\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 33\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 34\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 35\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 36\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 37\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 38\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 39\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 40\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Flexitime\": {\n                            \"Opening balance\": {\n                                \"value\": 0\n                            },\n                            \"Target\": {\n                                \"value\": 0\n                            },\n                            \"Accumulated\": {\n                                \"value\": 0\n                            },\n                            \"Closing balance\": {\n                                \"value\": 0\n                            },\n                            \"Overspill\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Swipes\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Roster\": {\n                        \"Default schedules\": {\n                            \"value\": 1\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 0\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 1\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Shift requests\": {\n                        \"Default schedules\": {\n                            \"value\": 0\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 0\n                        },\n                        \"Absences\": {\n                            \"value\": 0\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 0\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Drop\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Swap\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Extra\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Accept\": {\n                            \"value\": 1\n                        },\n                        \"Drop cancel\": {\n                            \"value\": 1\n                        },\n                        \"Swap cancel\": {\n                            \"value\": 1\n                        },\n                        \"Extra cancel\": {\n                            \"value\": 1\n                        },\n                        \"Accept cancel\": {\n                            \"value\": 1\n                        },\n                        \"Filter\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Absence\": {\n                    \"Absence\": {\n                        \"Restrict range\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Restrict duration\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 1\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Cancel absence\": {\n                        \"Approved\": {\n                            \"value\": 1\n                        },\n                        \"Block\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 1\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Entitlement\": {\n                        \"Categories\": {\n                            \"Absence Category 1\": {\n                                \"value\": 1\n                            },\n                            \"Absence Category 2\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 3\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 4\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 5\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 6\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 7\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 8\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 9\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Time off\": {\n                        \"Anonymise names\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence colour\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 0\n                        },\n                        \"Anonymise absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"8\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"13\": {\n                                \"value\": 0\n                            },\n                            \"14\": {\n                                \"value\": 0\n                            },\n                            \"15\": {\n                                \"value\": 0\n                            },\n                            \"16\": {\n                                \"value\": 0\n                            },\n                            \"17\": {\n                                \"value\": 0\n                            },\n                            \"18\": {\n                                \"value\": 0\n                            },\n                            \"19\": {\n                                \"value\": 0\n                            },\n                            \"20\": {\n                                \"value\": 0\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 0\n                            },\n                            \"25\": {\n                                \"value\": 0\n                            },\n                            \"26\": {\n                                \"value\": 0\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 0\n                            },\n                            \"-2\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Filter\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Job\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"value\": 1\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"value\": 1\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Operation\": {\n                            \"value\": 1\n                        },\n                        \"Quantity\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Work\": {\n                            \"Swipes\": {\n                                \"value\": 0\n                            },\n                            \"Job\": {\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"value\": 0\n                            },\n                            \"Client\": {\n                                \"value\": 0\n                            },\n                            \"Schedule\": {\n                                \"value\": 0\n                            },\n                            \"Anomaly\": {\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"value\": 0\n                            },\n                            \"Divider\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Daily\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Overall\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Job\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Job\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"View assigned\": {\n                        \"value\": 1\n                    },\n                    \"View all\": {\n                        \"value\": 1\n                    },\n                    \"View\": {\n                        \"Summary\": {\n                            \"Job group\": {\n                                \"value\": 0\n                            },\n                            \"Site name\": {\n                                \"value\": 0\n                            },\n                            \"Site contact\": {\n                                \"value\": 0\n                            },\n                            \"Site phone\": {\n                                \"value\": 0\n                            },\n                            \"Site email\": {\n                                \"value\": 0\n                            },\n                            \"Client name\": {\n                                \"value\": 0\n                            },\n                            \"Client contact\": {\n                                \"value\": 0\n                            },\n                            \"Client phone\": {\n                                \"value\": 0\n                            },\n                            \"Client email\": {\n                                \"value\": 0\n                            },\n                            \"Site address\": {\n                                \"Include site name\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Parts\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Assignees\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Add\": {\n                        \"Parts\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"13\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Delete\": {\n                        \"Parts\": {\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Allow complete\": {\n                        \"value\": 1\n                    },\n                    \"Allow undo complete\": {\n                        \"value\": 1\n                    },\n                    \"Employee signature\": {\n                        \"Required\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Client signature\": {\n                        \"Required\": {\n                            \"value\": 0\n                        },\n                        \"Unavailable\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Cost Centre\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Rate\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Work\": {\n                            \"Swipes\": {\n                                \"value\": 0\n                            },\n                            \"Cost Centre\": {\n                                \"value\": 0\n                            },\n                            \"Rate\": {\n                                \"value\": 0\n                            },\n                            \"Schedule\": {\n                                \"value\": 0\n                            },\n                            \"Anomaly\": {\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"value\": 0\n                            },\n                            \"Divider\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Daily\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Overall\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Cost Centre\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Rate\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Cost Centre\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Rate\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Manager\": {\n                    \"Calendar\": {\n                        \"Birthday\": {\n                            \"value\": 1\n                        },\n                        \"Period schedule\": {\n                            \"value\": 0\n                        },\n                        \"Default schedules\": {\n                            \"value\": 1\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 0\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Personnel\": {\n                        \"value\": 1\n                    },\n                    \"Emergency\": {\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Terminal\": {\n                    \"Terminal\": {\n                        \"Disable\": {\n                            \"value\": 0\n                        },\n                        \"Autofocus\": {\n                            \"value\": 0\n                        },\n                        \"Attendance\": {\n                            \"PIN\": {\n                                \"value\": 0\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 0\n                            },\n                            \"Employee match\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Job Costing\": {\n                            \"PIN\": {\n                                \"value\": 0\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"Job required\": {\n                                    \"value\": 0\n                                },\n                                \"Operation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"Allow zero\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 0\n                            },\n                            \"Job selectable\": {\n                                \"value\": 0\n                            },\n                            \"Job bound\": {\n                                \"value\": 0\n                            },\n                            \"Operation selectable\": {\n                                \"value\": 0\n                            },\n                            \"Operation bound\": {\n                                \"value\": 0\n                            },\n                            \"Employee match\": {\n                                \"value\": 0\n                            },\n                            \"Job match\": {\n                                \"value\": 0\n                            },\n                            \"Operation match\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Cost Centre\": {\n                            \"PIN\": {\n                                \"value\": 0\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"Cost centre required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 0\n                            },\n                            \"Cost centre selectable\": {\n                                \"value\": 0\n                            },\n                            \"Employee match\": {\n                                \"value\": 0\n                            },\n                            \"Cost centre match\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Dashboard\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Jobs\": {\n                        \"value\": 0\n                    },\n                    \"Documents\": {\n                        \"value\": 1\n                    },\n                    \"Messages\": {\n                        \"value\": 1\n                    },\n                    \"Absences\": {\n                        \"value\": 1\n                    },\n                    \"Summary\": {\n                        \"value\": 1\n                    },\n                    \"Flexitime\": {\n                        \"value\": 1\n                    },\n                    \"Entitlement\": {\n                        \"Categories\": {\n                            \"Absence Category 1\": {\n                                \"value\": 1\n                            },\n                            \"Absence Category 2\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 3\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 4\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 5\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 6\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 7\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 8\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 9\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"734707ad-db85-4b25-bfb2-48d8ee404c90"},{"name":"Get PWA Policy","id":"41dc3ff5-015b-422e-95bd-3004116136d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/pwa-policies/3","description":"<p>Gets a single PWA policy in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["pwa-policies","3"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"c2bd61fc-1345-4ad0-a9bf-b77f99ba6f03","name":"Get PWA Policy","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/pwa-policies/3"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:00:05 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"23962"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"pwa_policy_id\": 3,\n            \"timezone\": \"Europe/London\",\n            \"description\": \"Demo PWA Policy\",\n            \"terminal_ids\": \"35,39,1,22,37,42\",\n            \"terminal_id\": 1,\n            \"data\": {\n                \"Personnel\": {\n                    \"View\": {\n                        \"Address\": {\n                            \"value\": 1\n                        },\n                        \"Postcode\": {\n                            \"value\": 1\n                        },\n                        \"Telephone\": {\n                            \"value\": 1\n                        },\n                        \"Mobile\": {\n                            \"value\": 1\n                        },\n                        \"Email\": {\n                            \"value\": 1\n                        },\n                        \"Title\": {\n                            \"value\": 1\n                        },\n                        \"First name\": {\n                            \"value\": 1\n                        },\n                        \"Middle name\": {\n                            \"value\": 1\n                        },\n                        \"Last name\": {\n                            \"value\": 1\n                        },\n                        \"Date of birth\": {\n                            \"value\": 1\n                        },\n                        \"Gender\": {\n                            \"value\": 1\n                        },\n                        \"Marital status\": {\n                            \"value\": 1\n                        },\n                        \"Nationality\": {\n                            \"value\": 1\n                        },\n                        \"NI code\": {\n                            \"value\": 1\n                        },\n                        \"Passport number\": {\n                            \"value\": 1\n                        },\n                        \"Visa number\": {\n                            \"value\": 1\n                        },\n                        \"Employee ID\": {\n                            \"value\": 1\n                        },\n                        \"Badge number\": {\n                            \"value\": 1\n                        },\n                        \"Payroll number\": {\n                            \"value\": 1\n                        },\n                        \"Start date\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 1\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 2\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 3\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 4\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 5\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 6\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 7\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 8\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 9\": {\n                            \"value\": 1\n                        },\n                        \"Grouping 10\": {\n                            \"value\": 1\n                        },\n                        \"NOK name\": {\n                            \"value\": 1\n                        },\n                        \"NOK telephone\": {\n                            \"value\": 1\n                        },\n                        \"NOK relationship\": {\n                            \"value\": 1\n                        },\n                        \"Bank name\": {\n                            \"value\": 0\n                        },\n                        \"Bank address\": {\n                            \"value\": 0\n                        },\n                        \"Telephone number\": {\n                            \"value\": 0\n                        },\n                        \"Account name\": {\n                            \"value\": 0\n                        },\n                        \"Account number\": {\n                            \"value\": 0\n                        },\n                        \"Sort code\": {\n                            \"value\": 0\n                        },\n                        \"Pension name\": {\n                            \"value\": 0\n                        },\n                        \"Pension number\": {\n                            \"value\": 0\n                        },\n                        \"Pension details\": {\n                            \"value\": 0\n                        },\n                        \"Date of entry\": {\n                            \"value\": 0\n                        },\n                        \"AVC contribution\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Edit\": {\n                        \"Address\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Postcode\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Telephone\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Mobile\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Email\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Title\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"First name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Middle name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Last name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Date of birth\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Gender\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Marital status\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Nationality\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NI code\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Passport number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Visa number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Badge number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Payroll number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Start date\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 1\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 2\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 3\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 4\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 5\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 6\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 7\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 8\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 9\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Grouping 10\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK telephone\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NOK relationship\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Bank name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Bank address\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Telephone number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Account name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Account number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Sort code\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension name\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension number\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Pension details\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Date of entry\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"AVC contribution\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Training\": {\n                        \"value\": 1\n                    },\n                    \"Accident\": {\n                        \"value\": 1\n                    },\n                    \"AddDocument\": {\n                        \"Authorisation required\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"1\": {\n                                \"value\": 1\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"-10\": {\n                                \"value\": 0\n                            },\n                            \"-13\": {\n                                \"value\": 0\n                            },\n                            \"-2\": {\n                                \"value\": 0\n                            },\n                            \"-3\": {\n                                \"value\": 0\n                            },\n                            \"-12\": {\n                                \"value\": 0\n                            },\n                            \"-4\": {\n                                \"value\": 0\n                            },\n                            \"-7\": {\n                                \"value\": 0\n                            },\n                            \"-6\": {\n                                \"value\": 0\n                            },\n                            \"-5\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 0\n                            },\n                            \"-11\": {\n                                \"value\": 0\n                            },\n                            \"-8\": {\n                                \"value\": 0\n                            },\n                            \"-9\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewDocument\": {\n                        \"Distribution\": {\n                            \"value\": 0\n                        },\n                        \"Enforce priority order\": {\n                            \"value\": 0\n                        },\n                        \"Company\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 1\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"AddMessage\": {\n                        \"Authorisation required\": {\n                            \"value\": 0\n                        },\n                        \"Categories\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"8\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewMessage\": {\n                        \"Distribution\": {\n                            \"value\": 0\n                        },\n                        \"Enforce priority order\": {\n                            \"value\": 0\n                        },\n                        \"Company\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"8\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"AddForm\": {\n                        \"Authorisation required\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"EditForm\": {\n                        \"Allow edit other\": {\n                            \"value\": 1\n                        },\n                        \"Categories\": {\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"ViewForm\": {\n                        \"Personnel\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"MarkSafe\": {\n                        \"value\": 0\n                    },\n                    \"Password\": {\n                        \"value\": 1\n                    },\n                    \"MFA\": {\n                        \"value\": 1\n                    },\n                    \"Passkey\": {\n                        \"value\": 0\n                    },\n                    \"Fingerprint\": {\n                        \"value\": 0\n                    },\n                    \"value\": 0\n                },\n                \"Attendance\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 1\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"NFC booking\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Rates\": {\n                            \"Rate 1\": {\n                                \"value\": 1\n                            },\n                            \"Rate 2\": {\n                                \"value\": 1\n                            },\n                            \"Rate 3\": {\n                                \"value\": 1\n                            },\n                            \"Rate 4\": {\n                                \"value\": 1\n                            },\n                            \"Rate 5\": {\n                                \"value\": 1\n                            },\n                            \"Rate 6\": {\n                                \"value\": 0\n                            },\n                            \"Rate 7\": {\n                                \"value\": 0\n                            },\n                            \"Rate 8\": {\n                                \"value\": 0\n                            },\n                            \"Rate 9\": {\n                                \"value\": 0\n                            },\n                            \"Rate 10\": {\n                                \"value\": 0\n                            },\n                            \"Rate 11\": {\n                                \"value\": 0\n                            },\n                            \"Rate 12\": {\n                                \"value\": 1\n                            },\n                            \"Rate 13\": {\n                                \"value\": 0\n                            },\n                            \"Rate 14\": {\n                                \"value\": 1\n                            },\n                            \"Rate 15\": {\n                                \"value\": 0\n                            },\n                            \"Rate 16\": {\n                                \"value\": 0\n                            },\n                            \"Rate 17\": {\n                                \"value\": 0\n                            },\n                            \"Rate 18\": {\n                                \"value\": 0\n                            },\n                            \"Rate 19\": {\n                                \"value\": 0\n                            },\n                            \"Rate 20\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Costs\": {\n                            \"Rate 1\": {\n                                \"value\": 1\n                            },\n                            \"Rate 2\": {\n                                \"value\": 0\n                            },\n                            \"Rate 3\": {\n                                \"value\": 0\n                            },\n                            \"Rate 4\": {\n                                \"value\": 0\n                            },\n                            \"Rate 5\": {\n                                \"value\": 1\n                            },\n                            \"Rate 6\": {\n                                \"value\": 1\n                            },\n                            \"Rate 7\": {\n                                \"value\": 0\n                            },\n                            \"Rate 8\": {\n                                \"value\": 0\n                            },\n                            \"Rate 9\": {\n                                \"value\": 0\n                            },\n                            \"Rate 10\": {\n                                \"value\": 0\n                            },\n                            \"Rate 11\": {\n                                \"value\": 0\n                            },\n                            \"Rate 12\": {\n                                \"value\": 0\n                            },\n                            \"Rate 13\": {\n                                \"value\": 0\n                            },\n                            \"Rate 14\": {\n                                \"value\": 0\n                            },\n                            \"Rate 15\": {\n                                \"value\": 0\n                            },\n                            \"Rate 16\": {\n                                \"value\": 0\n                            },\n                            \"Rate 17\": {\n                                \"value\": 0\n                            },\n                            \"Rate 18\": {\n                                \"value\": 0\n                            },\n                            \"Rate 19\": {\n                                \"value\": 0\n                            },\n                            \"Rate 20\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Static registers\": {\n                            \"Static Register 1\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 2\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 3\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 4\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 5\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 6\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 7\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 8\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 9\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 10\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 11\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 12\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 13\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 14\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 15\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 16\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 17\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 18\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 19\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 20\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 21\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 22\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 23\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 24\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 25\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 26\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 27\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 28\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 29\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 30\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 31\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 32\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 33\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 34\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 35\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 36\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 37\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 38\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 39\": {\n                                \"value\": 0\n                            },\n                            \"Static Register 40\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Flexitime\": {\n                            \"Opening balance\": {\n                                \"value\": 0\n                            },\n                            \"Target\": {\n                                \"value\": 0\n                            },\n                            \"Accumulated\": {\n                                \"value\": 0\n                            },\n                            \"Closing balance\": {\n                                \"value\": 0\n                            },\n                            \"Overspill\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Swipes\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Roster\": {\n                        \"Default schedules\": {\n                            \"value\": 1\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 0\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 1\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Shift requests\": {\n                        \"Default schedules\": {\n                            \"value\": 0\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 0\n                        },\n                        \"Absences\": {\n                            \"value\": 0\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 0\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Drop\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Swap\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Extra\": {\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Accept\": {\n                            \"value\": 1\n                        },\n                        \"Drop cancel\": {\n                            \"value\": 1\n                        },\n                        \"Swap cancel\": {\n                            \"value\": 1\n                        },\n                        \"Extra cancel\": {\n                            \"value\": 1\n                        },\n                        \"Accept cancel\": {\n                            \"value\": 1\n                        },\n                        \"Filter\": {\n                            \"Grouping 1\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Absence\": {\n                    \"Absence\": {\n                        \"Restrict range\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Restrict duration\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"Required\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 1\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Cancel absence\": {\n                        \"Approved\": {\n                            \"value\": 1\n                        },\n                        \"Block\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 1\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Entitlement\": {\n                        \"Categories\": {\n                            \"Absence Category 1\": {\n                                \"value\": 1\n                            },\n                            \"Absence Category 2\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 3\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 4\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 5\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 6\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 7\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 8\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 9\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Time off\": {\n                        \"Anonymise names\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence colour\": {\n                            \"value\": 0\n                        },\n                        \"Hide absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 1\n                            },\n                            \"4\": {\n                                \"value\": 1\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 1\n                            },\n                            \"8\": {\n                                \"value\": 1\n                            },\n                            \"9\": {\n                                \"value\": 1\n                            },\n                            \"10\": {\n                                \"value\": 1\n                            },\n                            \"11\": {\n                                \"value\": 1\n                            },\n                            \"12\": {\n                                \"value\": 1\n                            },\n                            \"13\": {\n                                \"value\": 1\n                            },\n                            \"14\": {\n                                \"value\": 1\n                            },\n                            \"15\": {\n                                \"value\": 1\n                            },\n                            \"16\": {\n                                \"value\": 1\n                            },\n                            \"17\": {\n                                \"value\": 1\n                            },\n                            \"18\": {\n                                \"value\": 1\n                            },\n                            \"19\": {\n                                \"value\": 1\n                            },\n                            \"20\": {\n                                \"value\": 1\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 1\n                            },\n                            \"25\": {\n                                \"value\": 1\n                            },\n                            \"26\": {\n                                \"value\": 1\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 1\n                            },\n                            \"-2\": {\n                                \"value\": 1\n                            },\n                            \"value\": 0\n                        },\n                        \"Anonymise absence reasons\": {\n                            \"1\": {\n                                \"value\": 0\n                            },\n                            \"2\": {\n                                \"value\": 0\n                            },\n                            \"3\": {\n                                \"value\": 0\n                            },\n                            \"4\": {\n                                \"value\": 0\n                            },\n                            \"5\": {\n                                \"value\": 0\n                            },\n                            \"6\": {\n                                \"value\": 0\n                            },\n                            \"7\": {\n                                \"value\": 0\n                            },\n                            \"8\": {\n                                \"value\": 0\n                            },\n                            \"9\": {\n                                \"value\": 0\n                            },\n                            \"10\": {\n                                \"value\": 0\n                            },\n                            \"11\": {\n                                \"value\": 0\n                            },\n                            \"12\": {\n                                \"value\": 0\n                            },\n                            \"13\": {\n                                \"value\": 0\n                            },\n                            \"14\": {\n                                \"value\": 0\n                            },\n                            \"15\": {\n                                \"value\": 0\n                            },\n                            \"16\": {\n                                \"value\": 0\n                            },\n                            \"17\": {\n                                \"value\": 0\n                            },\n                            \"18\": {\n                                \"value\": 0\n                            },\n                            \"19\": {\n                                \"value\": 0\n                            },\n                            \"20\": {\n                                \"value\": 0\n                            },\n                            \"23\": {\n                                \"value\": 0\n                            },\n                            \"24\": {\n                                \"value\": 0\n                            },\n                            \"25\": {\n                                \"value\": 0\n                            },\n                            \"26\": {\n                                \"value\": 0\n                            },\n                            \"27\": {\n                                \"value\": 0\n                            },\n                            \"-1\": {\n                                \"value\": 0\n                            },\n                            \"-2\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Filter\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Job\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Operation\": {\n                            \"value\": 1\n                        },\n                        \"Quantity\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Work\": {\n                            \"Swipes\": {\n                                \"value\": 0\n                            },\n                            \"Job\": {\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"value\": 0\n                            },\n                            \"Client\": {\n                                \"value\": 0\n                            },\n                            \"Schedule\": {\n                                \"value\": 0\n                            },\n                            \"Anomaly\": {\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"value\": 0\n                            },\n                            \"Divider\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Daily\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Overall\": {\n                            \"Time\": {\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Job\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Edit\": {\n                            \"Job\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Operation\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Delete\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"View assigned\": {\n                        \"value\": 1\n                    },\n                    \"View all\": {\n                        \"value\": 1\n                    },\n                    \"View\": {\n                        \"Summary\": {\n                            \"Job group\": {\n                                \"value\": 0\n                            },\n                            \"Site name\": {\n                                \"value\": 0\n                            },\n                            \"Site contact\": {\n                                \"value\": 0\n                            },\n                            \"Site phone\": {\n                                \"value\": 0\n                            },\n                            \"Site email\": {\n                                \"value\": 0\n                            },\n                            \"Client name\": {\n                                \"value\": 0\n                            },\n                            \"Client contact\": {\n                                \"value\": 0\n                            },\n                            \"Client phone\": {\n                                \"value\": 0\n                            },\n                            \"Client email\": {\n                                \"value\": 0\n                            },\n                            \"Site address\": {\n                                \"Include site name\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Parts\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Assignees\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Add\": {\n                        \"Parts\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"Categories\": {\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"6\": {\n                                    \"value\": 0\n                                },\n                                \"7\": {\n                                    \"value\": 0\n                                },\n                                \"9\": {\n                                    \"value\": 0\n                                },\n                                \"10\": {\n                                    \"value\": 0\n                                },\n                                \"11\": {\n                                    \"value\": 0\n                                },\n                                \"12\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Delete\": {\n                        \"Parts\": {\n                            \"value\": 0\n                        },\n                        \"Notes\": {\n                            \"value\": 0\n                        },\n                        \"Documents\": {\n                            \"value\": 0\n                        },\n                        \"Photos\": {\n                            \"value\": 0\n                        },\n                        \"Forms\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Allow complete\": {\n                        \"value\": 1\n                    },\n                    \"Allow undo complete\": {\n                        \"value\": 1\n                    },\n                    \"Employee signature\": {\n                        \"Required\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Client signature\": {\n                        \"Required\": {\n                            \"value\": 0\n                        },\n                        \"Unavailable\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Cost Centre\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 0\n                        },\n                        \"value\": 0\n                    },\n                    \"Booking\": {\n                        \"Real time\": {\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"value\": 1\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Missed booking\": {\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"value\": 1\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Comment required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Geo fencing\": {\n                                \"value\": 0\n                            },\n                            \"Bluetooth required\": {\n                                \"value\": 0\n                            },\n                            \"Specify terminal\": {\n                                \"value\": 0\n                            },\n                            \"Flag as manual\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Rate\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"Work\": {\n                            \"Swipes\": {\n                                \"value\": 1\n                            },\n                            \"Cost Centre\": {\n                                \"value\": 1\n                            },\n                            \"Rate\": {\n                                \"value\": 1\n                            },\n                            \"Schedule\": {\n                                \"value\": 1\n                            },\n                            \"Anomaly\": {\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"value\": 1\n                            },\n                            \"Cost\": {\n                                \"value\": 1\n                            },\n                            \"Quantity\": {\n                                \"value\": 0\n                            },\n                            \"Divider\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Daily\": {\n                            \"Time\": {\n                                \"value\": 1\n                            },\n                            \"Cost\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Overall\": {\n                            \"Time\": {\n                                \"value\": 1\n                            },\n                            \"Cost\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Add\": {\n                            \"Cost Centre\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Rate\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Edit\": {\n                            \"Cost Centre\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Rate\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Date\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Start time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Stop time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Time\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 1\n                                    },\n                                    \"value\": 1\n                                },\n                                \"value\": 0\n                            },\n                            \"Cost\": {\n                                \"Editable\": {\n                                    \"Required\": {\n                                        \"value\": 0\n                                    },\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Delete\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Manager\": {\n                    \"Calendar\": {\n                        \"Birthday\": {\n                            \"value\": 1\n                        },\n                        \"Period schedule\": {\n                            \"value\": 0\n                        },\n                        \"Default schedules\": {\n                            \"value\": 1\n                        },\n                        \"Rostered schedules\": {\n                            \"value\": 1\n                        },\n                        \"Absences\": {\n                            \"value\": 1\n                        },\n                        \"Tasks\": {\n                            \"value\": 0\n                        },\n                        \"Memo\": {\n                            \"value\": 0\n                        },\n                        \"Home groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"Cross groupings\": {\n                            \"Grouping 1\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 2\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 3\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 4\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 5\": {\n                                \"value\": 1\n                            },\n                            \"Grouping 6\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 7\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 8\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 9\": {\n                                \"value\": 0\n                            },\n                            \"Grouping 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Personnel\": {\n                        \"value\": 1\n                    },\n                    \"Emergency\": {\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Terminal\": {\n                    \"Terminal\": {\n                        \"Disable\": {\n                            \"value\": 0\n                        },\n                        \"Autofocus\": {\n                            \"value\": 1\n                        },\n                        \"Attendance\": {\n                            \"PIN\": {\n                                \"value\": 1\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 1\n                            },\n                            \"Employee match\": {\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Job Costing\": {\n                            \"PIN\": {\n                                \"value\": 0\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Start\": {\n                                \"value\": 1\n                            },\n                            \"Stop\": {\n                                \"Job required\": {\n                                    \"value\": 0\n                                },\n                                \"Operation required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"Operation\": {\n                                \"value\": 0\n                            },\n                            \"Quantity\": {\n                                \"Allow zero\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 0\n                            },\n                            \"Job selectable\": {\n                                \"value\": 0\n                            },\n                            \"Job bound\": {\n                                \"value\": 0\n                            },\n                            \"Operation selectable\": {\n                                \"value\": 0\n                            },\n                            \"Operation bound\": {\n                                \"value\": 0\n                            },\n                            \"Employee match\": {\n                                \"value\": 0\n                            },\n                            \"Job match\": {\n                                \"value\": 0\n                            },\n                            \"Operation match\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Cost Centre\": {\n                            \"PIN\": {\n                                \"value\": 0\n                            },\n                            \"Password\": {\n                                \"value\": 0\n                            },\n                            \"Passkey\": {\n                                \"value\": 0\n                            },\n                            \"Fingerprint\": {\n                                \"value\": 0\n                            },\n                            \"Authorisation required\": {\n                                \"value\": 0\n                            },\n                            \"Geo required\": {\n                                \"value\": 0\n                            },\n                            \"Start\": {\n                                \"value\": 0\n                            },\n                            \"Stop\": {\n                                \"Cost centre required\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"Employee selectable\": {\n                                \"value\": 0\n                            },\n                            \"Cost centre selectable\": {\n                                \"value\": 0\n                            },\n                            \"Employee match\": {\n                                \"value\": 0\n                            },\n                            \"Cost centre match\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                },\n                \"Dashboard\": {\n                    \"Roll call\": {\n                        \"Unprocessed\": {\n                            \"value\": 1\n                        },\n                        \"value\": 1\n                    },\n                    \"Jobs\": {\n                        \"value\": 0\n                    },\n                    \"Documents\": {\n                        \"value\": 1\n                    },\n                    \"Messages\": {\n                        \"value\": 1\n                    },\n                    \"Absences\": {\n                        \"value\": 1\n                    },\n                    \"Summary\": {\n                        \"value\": 1\n                    },\n                    \"Flexitime\": {\n                        \"value\": 1\n                    },\n                    \"Entitlement\": {\n                        \"Categories\": {\n                            \"Absence Category 1\": {\n                                \"value\": 1\n                            },\n                            \"Absence Category 2\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 3\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 4\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 5\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 6\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 7\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 8\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 9\": {\n                                \"value\": 0\n                            },\n                            \"Absence Category 10\": {\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Timesheet\": {\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"41dc3ff5-015b-422e-95bd-3004116136d5"},{"name":"Add PWA Policy","id":"57879a4d-0639-4851-931c-477d42de01f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"PWA policy with all features","type":"text"},{"key":"data","value":"{json}","type":"text"},{"key":"timezone","value":"Europe/Dublin","type":"text"},{"key":"geo_fence_id","value":"2","type":"text"},{"key":"terminal_ids","value":"1,2,3,4","type":"text"},{"key":"terminal_id","value":"1","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/pwa-policies","description":"<p>Adds a new PWA policy into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["pwa-policies"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"57879a4d-0639-4851-931c-477d42de01f2"},{"name":"Update PWA Policy","id":"c4b53258-4d83-4261-bc83-c9343f6b6e9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New PWA policy description","type":"text"},{"key":"geo_fence_id","value":"10","type":"text"},{"key":"terminal_id","value":"4","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/pwa-policies/5","description":"<p>Updates an existing PWA policy in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["pwa-policies","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4b53258-4d83-4261-bc83-c9343f6b6e9a"},{"name":"Delete PWA Policy","id":"fac50128-e964-4e02-a4df-5b4482f3ee73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/pwa-policies/5","description":"<p>Deletes an existing PWA policy from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["pwa-policies","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"fac50128-e964-4e02-a4df-5b4482f3ee73"}],"id":"76c4f78c-5232-42dc-9f25-0b5fb07fa8be","_postman_id":"76c4f78c-5232-42dc-9f25-0b5fb07fa8be","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Real Time Messages","item":[{"name":"Get Real Time Messages","id":"762e7eea-0657-4617-9a1b-5557d0426349","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/real-time-messages","description":"<p>Gets real time messages in the system. If this endpoint is accessed from the employee context, the employee must be a recipient by virtue of direct assignment or their personnel range of this real time message in order for the message to be returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["real-time-messages"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"2d8f56b0-0f40-417b-a76f-1f842d655111","name":"Get Real Time Messages","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/real-time-messages"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:00:16 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": []\n}"}],"_postman_id":"762e7eea-0657-4617-9a1b-5557d0426349"},{"name":"Get Real Time Message","id":"0e975665-ad4a-447f-8681-431ce49b6283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message","value":"Your system is scheduled to be upgraded this weekend.","type":"text"},{"key":"alert_type","value":"info","type":"text"},{"key":"start_date","value":"2024-10-28 09:00:00","type":"text"},{"key":"finish_date","value":"2024-11-01 17:00:00","type":"text"},{"key":"real_time_message_user_ids","value":"1,2,3","type":"text"},{"key":"real_time_message_roster_range_ids","value":"5,6,7","type":"text"},{"key":"real_time_message_employee_ids","value":"188,189,190","type":"text"},{"key":"persistent","value":"0","type":"text"},{"key":"is_active","value":"0","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/real-time-messages/1","description":"<p>Gets a single real time message in the system. If this endpoint is accessed from the employee context, the employee must be a recipient by virtue of direct assignment or their personnel range of this real time message in order for the message to be returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["real-time-messages","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e975665-ad4a-447f-8681-431ce49b6283"},{"name":"Add Real Time Message","id":"ddbf2b2f-f693-4b97-b2c8-a646e0216948","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message","value":"Your system is scheduled to be upgraded this weekend.","type":"text"},{"key":"alert_type","value":"info","type":"text"},{"key":"start_date","value":"2024-10-28 09:00:00","type":"text"},{"key":"finish_date","value":"2024-11-01 17:00:00","type":"text"},{"key":"real_time_message_user_ids","value":"1,2,3","type":"text"},{"key":"real_time_message_roster_range_ids","value":"5,6,7","type":"text"},{"key":"real_time_message_employee_ids","value":"188,189,190","type":"text"},{"key":"persistent","value":"0","type":"text"},{"key":"is_active","value":"0","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/real-time-messages","description":"<p>Adds a new real time message into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["real-time-messages"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddbf2b2f-f693-4b97-b2c8-a646e0216948"},{"name":"Update Real Time Message","id":"5b7df784-4224-453e-a61b-36eeacba66bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"message","value":"Your system is scheduled to be upgraded this weekend.","type":"text"},{"key":"alert_type","value":"info","type":"text"},{"key":"start_date","value":"2024-10-28 09:00:00","type":"text"},{"key":"finish_date","value":"2024-11-01 17:00:00","type":"text"},{"key":"real_time_message_user_ids","value":"1,2,3","type":"text"},{"key":"real_time_message_roster_range_ids","value":"5,6,7","type":"text"},{"key":"real_time_message_employee_ids","value":"188,189,190","type":"text"},{"key":"persistent","value":"0","type":"text"},{"key":"is_active","value":"0","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/real-time-messages/1","description":"<p>Updates an existing real time message into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["real-time-messages","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b7df784-4224-453e-a61b-36eeacba66bb"},{"name":"Delete Real Time Message","id":"a4d042c1-0a55-4d3f-9a36-f4efca5ab17b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/real-time-messages/5","description":"<p>Deletes an existing real time message from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["real-time-messages","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4d042c1-0a55-4d3f-9a36-f4efca5ab17b"}],"id":"6f6d2d80-27d2-44f2-9376-645e5d04c7db","_postman_id":"6f6d2d80-27d2-44f2-9376-645e5d04c7db","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Shift Request","item":[{"name":"Get Shift Requests","id":"29c8a2c5-3c81-4287-b40b-f1f7731e4206","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests","description":"<p>Gets shift requests applicable to an employee. If the pwa_context GET parameter is other, shift requests pertaining to other employees will be retrieved (i.e. potential swaps) and if it's not other, shift requests pertaining to oneself will be retrieved.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"29c8a2c5-3c81-4287-b40b-f1f7731e4206"},{"name":"Get Shift Request","id":"922a6624-317d-43a4-8c65-49625e1791f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests/58","description":"<p>Gets a single shift request applicable to an employee.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests","58"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"922a6624-317d-43a4-8c65-49625e1791f8"},{"name":"Add Shift Request","id":"01c044c5-420f-4b12-b6b4-12026e49b453","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"employee_id","value":"188","type":"text"},{"key":"roster_shift_id","value":"18347","type":"text"},{"key":"shift_request_extra_id","value":"0","type":"text"},{"key":"shift_request_type","value":"1","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"memo_employee","value":"I'd like to drop this shift please?","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests","description":"<p>Adds a new shift request into the system for an employee. The shift_request_type can be 1 = drop, 2= swap, 3 = extra shift request. Where shift_request_type is 1 or 2, roster_shift_id should be provided and valid. Where shift_request_type is 3, shift_request_extra_id should be provided and valid.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"01c044c5-420f-4b12-b6b4-12026e49b453"},{"name":"Delete Shift Request","id":"2456f37c-0224-4624-b569-b93e3dc95f8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests/58","description":"<p>Deletes an existing shift request for an employee from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests","58"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"2456f37c-0224-4624-b569-b93e3dc95f8c"}],"id":"eeb15377-cbd7-4f1e-a493-67fd06e2ca51","_postman_id":"eeb15377-cbd7-4f1e-a493-67fd06e2ca51","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Shift Request Extra","item":[{"name":"Get Shift Request Extras","id":"818266ee-a40c-48c4-ae38-a026c6629a38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests-extras","description":"<p>Gets shift request extras available to an employee.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests-extras"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"818266ee-a40c-48c4-ae38-a026c6629a38"},{"name":"Get Shift Request Extra","id":"12d2ee94-4e06-4de2-b254-27d8ea18a17d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests-extras/58","description":"<p>Gets a single shift request extra available to an employee.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests-extras","58"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"12d2ee94-4e06-4de2-b254-27d8ea18a17d"},{"name":"Add Shift Request Extra","id":"585241f9-ece2-4fee-89a1-fd0ffb1988b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"date_and_time","value":"2024-01-01","type":"text"},{"key":"roster_range_id","value":"5","type":"text"},{"key":"quantity","value":"3","type":"text"},{"key":"daily_schedule_id","value":"529","type":"text"},{"key":"contribute","value":"0","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_user_id","value":"1","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"memo_user","value":"We have 3 on call shifts available on 1st January if anyone is interested?","type":"text"},{"key":"company_grouping_04_id","value":"872","type":"text"},{"key":"company_grouping_07_id","value":"33","type":"text"},{"key":"roster_task_ids","value":"5,2","type":"text"},{"key":"memo","value":"On call","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests-extras","description":"<p>Adds a new shift request extra into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests-extras"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"585241f9-ece2-4fee-89a1-fd0ffb1988b8"},{"name":"Update Shift Request Extra","id":"3ff8d79b-7974-4077-adcc-685dea778d10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"date_and_time","value":"2024-02-01","type":"text"},{"key":"roster_range_id","value":"5","type":"text"},{"key":"quantity","value":"3","type":"text"},{"key":"daily_schedule_id","value":"529","type":"text"},{"key":"contribute","value":"0","type":"text"},{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_user_id","value":"1","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"},{"key":"memo_user","value":"We have 3 on call shifts available on 1st January if anyone is interested? Apologies, it's actually on the 2nd January.","type":"text"},{"key":"company_grouping_04_id","value":"872","type":"text"},{"key":"company_grouping_07_id","value":"33","type":"text"},{"key":"roster_task_ids","value":"5,2","type":"text"},{"key":"memo","value":"On call","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-requests-extras/58","description":"<p>Updates an existing shift request extra in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-requests-extras","58"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ff8d79b-7974-4077-adcc-685dea778d10"},{"name":"Delete Shift Request Extra","id":"a5c61cd3-36fd-44c8-8b2d-b7e4a148712f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-request-extras/58","description":"<p>Deletes an existing shift request extra from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-request-extras","58"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5c61cd3-36fd-44c8-8b2d-b7e4a148712f"}],"id":"99de1564-f671-4689-90a7-6c98a4977dbe","_postman_id":"99de1564-f671-4689-90a7-6c98a4977dbe","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Shift Request Response","item":[{"name":"Get Shift Response","id":"d68ba626-7dce-4343-95cc-cb2291d36aa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-responses","description":"<p>Gets shift responses applicable to an employee. If the pwa_context GET parameter is other, shift responses from other employees will be retrieved (i.e. swap responses) and if it's not other, shift responses from oneself to other employee potential swaps are retrieved.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-responses"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"d68ba626-7dce-4343-95cc-cb2291d36aa8"},{"name":"Get Shift Response","id":"628f0179-81c2-4f33-a424-b011c3935e50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-responses/3847","description":"<p>Gets a single shift response applicable to an employee.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-responses","3847"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"628f0179-81c2-4f33-a424-b011c3935e50"},{"name":"Add Shift Response","id":"6c4277c4-f614-451a-a244-8aad5307c4e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"shift_request_id","value":"446","type":"text"},{"key":"roster_shift_id","value":"28388","type":"text"},{"key":"employee_id","value":"191","type":"text"},{"key":"authorisation","value":"1","type":"text"},{"key":"memo_employee","value":"I'd happy to swap if this shift suits?","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-responses","description":"<p>Adds a new shift response into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-responses"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c4277c4-f614-451a-a244-8aad5307c4e5"},{"name":"Update Shift Response","id":"cb5047aa-601d-4e13-a5cb-eecfb21909c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"authorisation","value":"3","type":"text"},{"key":"authorisation_finalised","value":"1","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-responses/3847","description":"<p>Updates an existing shift response in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-responses","3847"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb5047aa-601d-4e13-a5cb-eecfb21909c2"},{"name":"Delete Shift Response","id":"820b94fe-81f8-483a-8a97-d9edd112944a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/shift-responses/3847","description":"<p>Deletes an existing shift response from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["shift-responses","3847"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"820b94fe-81f8-483a-8a97-d9edd112944a"}],"id":"444b5b07-eab9-44a9-8641-7a4ff3591dd4","_postman_id":"444b5b07-eab9-44a9-8641-7a4ff3591dd4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"System Setting","item":[{"name":"Get System Settings","id":"1237e4d0-de5e-4ffc-b4e1-dabd24b509c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/system-settings","description":"<p>Get the rate, absence category and static register descriptions from the system. The app GET parameter can be provided to return settings specific to an application, e.g. pwa, visitor etc.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["system-settings"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"26751103-785c-4911-a76f-6b18f8880612","name":"Get System Settings","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/system-settings"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:02:03 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"5182"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": {\n        \"Rate 1\": \"Basic\",\n        \"Rate 2\": \"Basic OT\",\n        \"Rate 3\": \"OT x1.25\",\n        \"Rate 4\": \"OT x1.33\",\n        \"Rate 5\": \"OT x1.5\",\n        \"Rate 6\": \"OT x2\",\n        \"Rate 7\": \"Surplus \",\n        \"Rate 8\": \"Holiday\",\n        \"Rate 9\": \"CSP\",\n        \"Rate 10\": \"Parental\",\n        \"Rate 11\": \"UA OT xBas\",\n        \"Rate 12\": \"UA OT x1.25\",\n        \"Rate 13\": \"UA OT x 1.33\",\n        \"Rate 14\": \"UA OT x1.5\",\n        \"Rate 15\": \"UA OT x2\",\n        \"Rate 16\": \"Add Rate\",\n        \"Rate 17\": \"Add Rate\",\n        \"Rate 18\": \"Add Rate\",\n        \"Rate 19\": \"Add Rate\",\n        \"Rate 20\": \"Add Rate\",\n        \"Grouping 1\": \"Location\",\n        \"Grouping 2\": \"Department\",\n        \"Grouping 3\": \"Company\",\n        \"Grouping 4\": \"Pay Type\",\n        \"Grouping 5\": \"Reports To\",\n        \"Grouping 6\": \"Add Grouping +\",\n        \"Grouping 7\": \"Add Grouping +\",\n        \"Grouping 8\": \"Add Grouping +\",\n        \"Grouping 9\": \"Add Grouping +\",\n        \"Grouping 10\": \"Add Grouping +\",\n        \"Absence Category 1\": \"Holiday\",\n        \"Absence Category 2\": \"Sickness\",\n        \"Absence Category 3\": \"Parental Leave\",\n        \"Absence Category 4\": \"TOIL\",\n        \"Absence Category 5\": \"Business Absence\",\n        \"Absence Category 6\": \"Training\",\n        \"Absence Category 7\": \"Bereavement\",\n        \"Absence Category 8\": \"Misc\",\n        \"Absence Category 9\": \"Bank Holiday\",\n        \"Absence Category 10\": \"Absence Category 10\",\n        \"Grouping 11\": \"Visitor Company\",\n        \"Grouping 12\": \"Grouping 12\",\n        \"Grouping 13\": \"Grouping 13\",\n        \"Grouping 14\": \"Grouping 14\",\n        \"Grouping 15\": \"Grouping 15\",\n        \"Grouping 16\": \"Grouping 16\",\n        \"Grouping 17\": \"Grouping 17\",\n        \"Grouping 18\": \"Grouping 18\",\n        \"Grouping 19\": \"Grouping 19\",\n        \"Grouping 20\": \"Grouping 20\",\n        \"Absence Category 11\": \"Absence Category 11\",\n        \"Absence Category 12\": \"Absence Category 12\",\n        \"Absence Category 13\": \"Absence Category 13\",\n        \"Absence Category 14\": \"Absence Category 14\",\n        \"Absence Category 15\": \"Absence Category 15\",\n        \"Absence Category 16\": \"Absence Category 16\",\n        \"Absence Category 17\": \"Absence Category 17\",\n        \"Absence Category 18\": \"Absence Category 18\",\n        \"Absence Category 19\": \"Absence Category 19\",\n        \"Absence Category 20\": \"Absence Category 20\",\n        \"geo_fence_tolerance\": \"0.005\",\n        \"google_tag_measurement_id\": \"G-WC3LNS9LKS\",\n        \"header_show_fire_trigger_terminal_configurations\": \"31\",\n        \"mfa_methods\": \"email\",\n        \"minimum_password_length\": \"8\",\n        \"passkey_configuration_json\": \"{\\r\\n    \\\"apple\\\": 0,\\r\\n    \\\"yubico\\\": 0,\\r\\n    \\\"solo\\\": 0,\\r\\n    \\\"hypersecu\\\": 0,\\r\\n    \\\"google\\\": 0,\\r\\n    \\\"microsoft\\\": 0,\\r\\n    \\\"mds\\\": 1,\\r\\n    \\\"requireResidentKey\\\": 0,\\r\\n    \\\"type_usb\\\": 1,\\r\\n    \\\"type_nfc\\\": 1,\\r\\n    \\\"type_ble\\\": 1,\\r\\n    \\\"type_int\\\": 1,\\r\\n    \\\"type_hybrid\\\": 1,\\r\\n    \\\"fmt_android-key\\\": 1,\\r\\n    \\\"fmt_android-safetynet\\\": 1,\\r\\n    \\\"fmt_apple\\\": 1,\\r\\n    \\\"fmt_fido-u2f\\\": 1,\\r\\n    \\\"fmt_none\\\": 0,\\r\\n    \\\"fmt_packed\\\": 1,\\r\\n    \\\"fmt_tpm\\\": 1,\\r\\n    \\\"userVerification\\\": \\\"required\\\"\\r\\n}\",\n        \"pwa_add_original_booking\": \"1\",\n        \"pwa_add_original_booking_created\": \"1\",\n        \"pwa_admin_email\": \"support@actintime.co.uk\",\n        \"pwa_admin_phone\": \"+442088827200\",\n        \"pwa_app_name\": \"ActIn Time Connected PWA\",\n        \"pwa_app_short_name\": \"AIT PWA\",\n        \"pwa_default_cost_centre_rate\": \"5\",\n        \"pwa_default_document_category\": \"General\",\n        \"pwa_default_employee_document_category\": \"General\",\n        \"pwa_default_employee_form_category\": \"General\",\n        \"pwa_default_employee_message_category\": \"General\",\n        \"pwa_default_job_operation\": \"None\",\n        \"pwa_default_message_category\": \"General\",\n        \"pwa_default_personnel_last_x_hours_filter\": \"-24\",\n        \"pwa_default_photo_category\": \"All Photos\",\n        \"pwa_default_terminal_description\": \"GPS Device\",\n        \"pwa_emergency_mode\": \"0\",\n        \"pwa_employee_profile_change_settings\": \"3\",\n        \"pwa_fingerprint_total_wait_in_seconds\": \"30\",\n        \"pwa_fingerprint_wait_in_milliseconds_per_tick\": \"250\",\n        \"pwa_ical_enabled\": \"0\",\n        \"pwa_muster_point_tolerance\": \"0.005\",\n        \"pwa_muster_surname_characters\": \"25\",\n        \"pwa_new_message_disclaimer\": \"Strictly confidential information should not be sent via this channel.\",\n        \"pwa_not_default_terminal_warning_message\": \"<b style='color:red;'>IMPORTANT NOTE</b> Ensure the correct terminal has been selected for Fire Roll Call purposes.\",\n        \"pwa_policy_available_terminal_configurations\": \"1,2,5,10,15,30,31,32\",\n        \"pwa_prevent_duplicate_threshold\": \"1\",\n        \"pwa_set_terminal_from_ip_address_for_record_types\": \"\",\n        \"pwa_show_absence_authorisation\": \"3\",\n        \"pwa_show_absence_authorisation_finalisation\": \"1\",\n        \"pwa_show_company_documents_prior_to_start_date_threshold\": \"30\",\n        \"pwa_show_company_messages_prior_to_start_date_threshold\": \"30\",\n        \"pwa_show_own_absences\": \"0\",\n        \"pwa_terminal_mode_employee_identifier_field\": \"employee_id\",\n        \"pwa_use_server_time_for_record_types\": \"\",\n        \"timezone\": \"Europe/London\",\n        \"onpwaclientsaveabsenceform\": \"{\\r\\n    \\\"sufficient_entitlement_check_categories\\\": [1],\\r\\n    \\\"deduct_awaiting_decision_entitlement_deduction_from_balance_before_check\\\": true,\\r\\n    \\\"check_absence_overlay\\\": true,\\r\\n    \\\"prevent_absence_reasons_over_dates\\\": {\\r\\n       \\\"Unlikely\\\": [\\r\\n          {\\r\\n          \\\"start\\\": \\\"1st January\\\",\\r\\n          \\\"finish\\\": \\\"2nd January\\\"\\r\\n          }\\r\\n       ]    \\r\\n    },\\r\\n    \\\"prevent_absence_reasons_after_dates\\\": {\\r\\n       \\\"Unlikely\\\": [\\r\\n          {\\r\\n          \\\"after\\\": \\\"31st December\\\"\\r\\n          }\\r\\n       ]\\r\\n    },\\r\\n    \\\"prevent_absence_within_x_days\\\": 0,\\r\\n    \\\"prevent_absence_beyond_x_days\\\": 0,\\r\\n    \\\"prevent_absence_in_excess_of_x_days\\\": 0,\\r\\n    \\\"prevent_absence_in_excess_of_maximum_duration\\\": 0,\\r\\n    \\\"rest_day_check_enabled\\\": true\\r\\n}\",\n        \"company_name\": \"Demo System\",\n        \"real_time_messages\": []\n    }\n}"}],"_postman_id":"1237e4d0-de5e-4ffc-b4e1-dabd24b509c0"}],"id":"cace30e9-4227-435d-bc6c-df30a5b43b31","_postman_id":"cace30e9-4227-435d-bc6c-df30a5b43b31","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Task","item":[{"name":"Get Tasks","id":"f834a6e1-603b-485f-b285-bf2092ab4571","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/tasks","description":"<p>Get a list of tasks in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["tasks"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"83542ed2-3d01-415a-ba01-6ce4ff28f279","name":"Get Tasks","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:03:45 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"81"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"roster_task_id\": 1,\n            \"description\": \"On Call\"\n        }\n    ]\n}"}],"_postman_id":"f834a6e1-603b-485f-b285-bf2092ab4571"}],"id":"0b7c0121-4890-413d-b816-99c7e83bf69a","_postman_id":"0b7c0121-4890-413d-b816-99c7e83bf69a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Terminal","item":[{"name":"Get Terminal","id":"f2dd5141-c099-4410-b98f-012b141e110d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/terminals/22","description":"<p>Gets a single terminal from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["terminals","22"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"f6e8afbb-1346-44e3-84ba-36cf21dbb472","name":"Get Terminal","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/terminals/22"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:04:33 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"168"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"terminal_id\": 22,\n            \"number\": 1,\n            \"description\": \"London Site\",\n            \"status\": 0,\n            \"ip_address\": \"CKJB202160333\",\n            \"configuration\": 10,\n            \"r1_zone_id\": 1\n        }\n    ]\n}"}],"_postman_id":"f2dd5141-c099-4410-b98f-012b141e110d"},{"name":"Get Terminals","id":"275ba58f-4a3a-499c-8021-4a1c53db7fb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/terminals","description":"<p>Get a list of terminals in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["terminals"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"861198e3-16ca-484b-b6f1-0955a73c314b","name":"Get Terminals","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/terminals"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:03:54 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"1889"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"terminal_id\": 1,\n            \"number\": -1,\n            \"description\": \"GPS Device\",\n            \"status\": 0,\n            \"ip_address\": null,\n            \"configuration\": 15,\n            \"r1_zone_id\": 3\n        },\n        {\n            \"terminal_id\": 2,\n            \"number\": 0,\n            \"description\": \"Employee Self Service\",\n            \"status\": 6,\n            \"ip_address\": null,\n            \"configuration\": 2,\n            \"r1_zone_id\": null\n        },\n        {\n            \"terminal_id\": 4,\n            \"number\": 100,\n            \"description\": \"London Site Emergency\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 31,\n            \"r1_zone_id\": 1\n        },\n        {\n            \"terminal_id\": 5,\n            \"number\": 200,\n            \"description\": \"London Site Visitor Kiosk\",\n            \"status\": 3,\n            \"ip_address\": \"31.121.139.178, 172.80.3.186, 92.30.108.123, 172.80.2.36, 195.213.152.4, 172.80.2.128, 87.115.72.40, 172.80.3.169,193.237.201.5,92.30.99.135,172.80.2.227,31.121.139.178,172.80.3.233\",\n            \"configuration\": 32,\n            \"r1_zone_id\": 1\n        },\n        {\n            \"terminal_id\": 22,\n            \"number\": 1,\n            \"description\": \"London Site\",\n            \"status\": 0,\n            \"ip_address\": \"CKJB202160333\",\n            \"configuration\": 10,\n            \"r1_zone_id\": 1\n        },\n        {\n            \"terminal_id\": 35,\n            \"number\": 2,\n            \"description\": \"Birmingham Site\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 1,\n            \"r1_zone_id\": 11\n        },\n        {\n            \"terminal_id\": 36,\n            \"number\": 101,\n            \"description\": \"Birmingham Site Emergency\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 31,\n            \"r1_zone_id\": 11\n        },\n        {\n            \"terminal_id\": 37,\n            \"number\": 3,\n            \"description\": \"Manchester Site\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 1,\n            \"r1_zone_id\": 9\n        },\n        {\n            \"terminal_id\": 38,\n            \"number\": 102,\n            \"description\": \"Manchester Site Emergency\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 31,\n            \"r1_zone_id\": 9\n        },\n        {\n            \"terminal_id\": 39,\n            \"number\": 4,\n            \"description\": \"Cardiff Site\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 1,\n            \"r1_zone_id\": 5\n        },\n        {\n            \"terminal_id\": 40,\n            \"number\": 103,\n            \"description\": \"Cardiff Site Emergency\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 31,\n            \"r1_zone_id\": 5\n        },\n        {\n            \"terminal_id\": 42,\n            \"number\": 5,\n            \"description\": \"Nottingham Site\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 1,\n            \"r1_zone_id\": 7\n        },\n        {\n            \"terminal_id\": 43,\n            \"number\": 104,\n            \"description\": \"Nottingham Site Emergency\",\n            \"status\": 3,\n            \"ip_address\": \"\",\n            \"configuration\": 31,\n            \"r1_zone_id\": 7\n        }\n    ]\n}"}],"_postman_id":"275ba58f-4a3a-499c-8021-4a1c53db7fb3"},{"name":"Add Terminal","id":"5f870e55-c3c0-4f47-9508-f67272e604a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New Terminal","type":"text"},{"key":"number","value":"99","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/terminals","description":"<p>Adds a new terminal into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["terminals"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f870e55-c3c0-4f47-9508-f67272e604a7"},{"name":"Update Terminal","id":"55f494ce-0b10-43b7-b9c5-cfc8e44ab22b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Updated Terminal","type":"text"},{"key":"number","value":"100","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/terminals/5","description":"<p>Update an existing terminal in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["terminals","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"55f494ce-0b10-43b7-b9c5-cfc8e44ab22b"},{"name":"Delete Terminal","id":"41e9c8e9-0d0b-4da7-8159-5fc34a18da7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/terminals/5","description":"<p>Deletes a single terminal from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["terminals","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"41e9c8e9-0d0b-4da7-8159-5fc34a18da7d"}],"id":"7b5b0eba-a468-4216-959e-2023cf098fed","_postman_id":"7b5b0eba-a468-4216-959e-2023cf098fed","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Training Matrix","item":[{"name":"Get Training Matrix","id":"3fca5492-876c-4c6d-80ce-7e26f04af3e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/training-matrix","description":"<p>Get a list of employment records, training policies and training records from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["training-matrix"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"09e93e7a-8527-4152-bbb9-29d36e3d5a92","name":"Get Training Matrix","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/training-matrix"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:04:47 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"36742"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Equipment Operation Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Manual Handling Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Preventive Maintenance Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 1,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2015-04-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Safety & Hazard Awareness Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Equipment Operation Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Manual Handling Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Preventive Maintenance Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 3,\n            \"job_description\": \"Warehouse Operative\",\n            \"date_of_commencement\": \"2023-02-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Safety & Hazard Awareness Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Leadership & Supervisory Skills\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Level 3–5 Diploma in Customer Service\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"NVQ Level 2–4 in Customer Service\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 4,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2023-09-12 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Equipment Operation Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": \"2024-07-29 12:00:00.000\",\n            \"course_passed\": 1,\n            \"certificate_issued\": 1,\n            \"date_of_expiry\": \"2026-07-29 00:00:00.000\"\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Manual Handling Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Preventive Maintenance Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Safety & Hazard Awareness Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 5,\n            \"job_description\": \"Warehouse Manager\",\n            \"date_of_commencement\": \"2001-03-06 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Manager Training Policy\",\n            \"training_description\": \"Leadership & Supervisory Skills\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"Inspection & Testing\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"Internal Controls & Compliance Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"ISO 9001 / Quality Management System (QMS) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"Leadership & Supervisory Skills\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 6,\n            \"job_description\": \"Quality Assurance Director\",\n            \"date_of_commencement\": \"1991-05-13 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Quality Assurance Director Training Policy\",\n            \"training_description\": \"Statistical Process Control (SPC) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Equipment Operation Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": \"2024-07-29 12:00:00.000\",\n            \"course_passed\": 1,\n            \"certificate_issued\": 1,\n            \"date_of_expiry\": \"2026-09-22 00:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": \"2024-07-29 08:00:00.000\",\n            \"course_passed\": 1,\n            \"certificate_issued\": 1,\n            \"date_of_expiry\": \"2026-07-29 00:00:00.000\"\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Inspection & Testing\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"ISO 9001 / Quality Management System (QMS) Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Kaizen Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Manual Handling Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Safety & Hazard Awareness Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 7,\n            \"job_description\": \"Production Manager\",\n            \"date_of_commencement\": \"2012-08-23 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Manager Training Policy\",\n            \"training_description\": \"Leadership & Supervisory Skills\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 8,\n            \"job_description\": \"Managing Director\",\n            \"date_of_commencement\": \"1989-09-26 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Managing Director Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 8,\n            \"job_description\": \"Managing Director\",\n            \"date_of_commencement\": \"1989-09-26 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Managing Director Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 8,\n            \"job_description\": \"Managing Director\",\n            \"date_of_commencement\": \"1989-09-26 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Managing Director Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 8,\n            \"job_description\": \"Managing Director\",\n            \"date_of_commencement\": \"1989-09-26 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Managing Director Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 8,\n            \"job_description\": \"Managing Director\",\n            \"date_of_commencement\": \"1989-09-26 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Managing Director Training Policy\",\n            \"training_description\": \"ISO 9001 / Quality Management System (QMS) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 8,\n            \"job_description\": \"Managing Director\",\n            \"date_of_commencement\": \"1989-09-26 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Managing Director Training Policy\",\n            \"training_description\": \"Leadership & Supervisory Skills\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 8,\n            \"job_description\": \"Managing Director\",\n            \"date_of_commencement\": \"1989-09-26 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Managing Director Training Policy\",\n            \"training_description\": \"Safety & Hazard Awareness Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Equipment Operation Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Manual Handling Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Preventive Maintenance Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 9,\n            \"job_description\": \"Quality Control Supervisor\",\n            \"date_of_commencement\": \"2020-07-16 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Warehouse Operative Training Policy\",\n            \"training_description\": \"Safety & Hazard Awareness Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Equipment Operation Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Inspection & Testing\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"ISO 9001 / Quality Management System (QMS) Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Kaizen Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Manual Handling Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 12,\n            \"job_description\": \"Production Operative\",\n            \"date_of_commencement\": \"2008-08-20 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Production Operative Training Policy\",\n            \"training_description\": \"Safety & Hazard Awareness Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Leadership & Supervisory Skills\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"Level 3–5 Diploma in Customer Service\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"NVQ Level 2–4 in Customer Service\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 13,\n            \"job_description\": \"Customer Service Representative \",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Customer Service Representative Training Policy\",\n            \"training_description\": \"PPE (Personal Protective Equipment) Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"Basic Health & Safety training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"Communication & Conflict Resolution\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"Electrical / Mechanical Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"Equipment Operation Certification\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"Fire Marshal Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"First Aid\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"Kaizen Training\",\n            \"required\": 0,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        },\n        {\n            \"employee_id\": 14,\n            \"job_description\": \"Maintenance Engineer\",\n            \"date_of_commencement\": \"2022-09-05 00:00:00.000\",\n            \"date_of_termination\": null,\n            \"training_policy_description\": \"Maintenance Engineer Training Policy\",\n            \"training_description\": \"Manual Handling Training\",\n            \"required\": 1,\n            \"date_and_time\": null,\n            \"course_passed\": null,\n            \"certificate_issued\": null,\n            \"date_of_expiry\": null\n        }\n    ]\n}"}],"_postman_id":"3fca5492-876c-4c6d-80ce-7e26f04af3e5"}],"id":"a8a49a00-23c5-4065-bebe-fb616f25fee7","_postman_id":"a8a49a00-23c5-4065-bebe-fb616f25fee7","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Visit","item":[{"name":"Get Visits","id":"f8b77a9d-0037-4f75-89c6-c34e5bb845f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visits","description":"<p>Get a list of visits in the system. If the context GET parameter is search, the API endpoint can be used to search for visitors due to check-in/out. In this mode, the endpoint can accept additional GET parameters to refine the search, notably; visitor_status, location_id, name, visit_hash.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visits"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"d9b5d3b3-0ed7-4876-b4a4-4941c037bf35","name":"Get Visits","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visits"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:04:57 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"8495"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"set-cookie","value":"ci_session=a6jhqsnvoiv2c0jmchoeg24fkbm8u35j; expires=Tue, 02 Jun 2026 14:00:32 GMT; Max-Age=86400; path=/; secure; HttpOnly; SameSite=Lax"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"visit_id\": 1,\n            \"start_date_and_time\": \"2024-07-11 13:00:00.000\",\n            \"finish_date_and_time\": \"2024-07-11 14:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 2,\n            \"start_date_and_time\": \"2024-07-11 13:00:00.000\",\n            \"finish_date_and_time\": \"2024-07-11 14:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 3,\n            \"start_date_and_time\": \"2024-07-11 14:00:00.000\",\n            \"finish_date_and_time\": \"2024-07-11 15:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 4,\n            \"start_date_and_time\": \"2024-07-11 17:00:00.000\",\n            \"finish_date_and_time\": \"2024-07-11 18:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 5,\n            \"start_date_and_time\": \"2024-07-12 11:15:00.000\",\n            \"finish_date_and_time\": \"2024-07-12 12:15:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 6,\n            \"start_date_and_time\": \"2024-07-12 11:33:00.000\",\n            \"finish_date_and_time\": \"2024-07-12 13:03:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 7,\n            \"start_date_and_time\": \"2024-07-12 16:20:00.000\",\n            \"finish_date_and_time\": \"2024-07-12 17:20:00.000\",\n            \"visit_group_description\": \"DIO Meeting\"\n        },\n        {\n            \"visit_id\": 8,\n            \"start_date_and_time\": \"2024-08-06 09:00:00.000\",\n            \"finish_date_and_time\": \"2024-08-06 10:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 9,\n            \"start_date_and_time\": \"2024-08-20 11:30:00.000\",\n            \"finish_date_and_time\": \"2024-08-20 12:30:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 10,\n            \"start_date_and_time\": \"2024-09-09 12:00:00.000\",\n            \"finish_date_and_time\": \"2024-09-09 14:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 11,\n            \"start_date_and_time\": \"2024-09-09 14:00:00.000\",\n            \"finish_date_and_time\": \"2024-09-09 15:00:00.000\",\n            \"visit_group_description\": \"Demo\"\n        },\n        {\n            \"visit_id\": 12,\n            \"start_date_and_time\": \"2024-09-18 10:00:00.000\",\n            \"finish_date_and_time\": \"2024-09-18 12:00:00.000\",\n            \"visit_group_description\": \"TESTING\"\n        },\n        {\n            \"visit_id\": 13,\n            \"start_date_and_time\": \"2024-09-18 11:00:00.000\",\n            \"finish_date_and_time\": \"2024-09-18 12:30:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 14,\n            \"start_date_and_time\": \"2024-09-19 11:00:00.000\",\n            \"finish_date_and_time\": \"2024-09-19 13:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 15,\n            \"start_date_and_time\": \"2024-10-11 11:00:00.000\",\n            \"finish_date_and_time\": \"2024-10-11 12:00:00.000\",\n            \"visit_group_description\": \"Interview\"\n        },\n        {\n            \"visit_id\": 16,\n            \"start_date_and_time\": \"2024-10-31 11:00:00.000\",\n            \"finish_date_and_time\": \"2024-10-31 12:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 17,\n            \"start_date_and_time\": \"2024-11-21 10:00:00.000\",\n            \"finish_date_and_time\": \"2024-11-21 11:00:00.000\",\n            \"visit_group_description\": \"Interview\"\n        },\n        {\n            \"visit_id\": 18,\n            \"start_date_and_time\": \"2024-11-29 11:00:00.000\",\n            \"finish_date_and_time\": \"2024-11-29 12:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 19,\n            \"start_date_and_time\": \"2024-12-05 11:00:00.000\",\n            \"finish_date_and_time\": \"2024-12-05 12:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 20,\n            \"start_date_and_time\": \"2024-12-10 13:00:00.000\",\n            \"finish_date_and_time\": \"2024-12-10 14:00:00.000\",\n            \"visit_group_description\": \"DEMO\"\n        },\n        {\n            \"visit_id\": 21,\n            \"start_date_and_time\": \"2024-12-13 12:00:00.000\",\n            \"finish_date_and_time\": \"2024-12-13 14:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 22,\n            \"start_date_and_time\": \"2025-01-08 10:00:00.000\",\n            \"finish_date_and_time\": \"2025-01-08 11:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 23,\n            \"start_date_and_time\": \"2025-01-15 09:00:00.000\",\n            \"finish_date_and_time\": \"2025-01-15 10:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 24,\n            \"start_date_and_time\": \"2025-01-20 11:46:00.000\",\n            \"finish_date_and_time\": \"2025-01-20 13:16:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 25,\n            \"start_date_and_time\": \"2025-01-30 14:00:00.000\",\n            \"finish_date_and_time\": \"2025-01-30 15:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 26,\n            \"start_date_and_time\": \"2025-02-21 09:00:00.000\",\n            \"finish_date_and_time\": \"2025-02-21 10:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 27,\n            \"start_date_and_time\": \"2025-02-20 14:49:00.000\",\n            \"finish_date_and_time\": \"2025-02-20 16:19:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 28,\n            \"start_date_and_time\": \"2025-03-16 09:00:00.000\",\n            \"finish_date_and_time\": \"2025-03-16 10:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 29,\n            \"start_date_and_time\": \"2025-03-14 12:26:00.000\",\n            \"finish_date_and_time\": \"2025-03-14 13:56:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 30,\n            \"start_date_and_time\": \"2025-04-01 11:04:00.000\",\n            \"finish_date_and_time\": \"2025-04-01 12:34:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 31,\n            \"start_date_and_time\": \"2025-04-02 09:00:00.000\",\n            \"finish_date_and_time\": \"2025-04-02 10:00:00.000\",\n            \"visit_group_description\": \"Demo\"\n        },\n        {\n            \"visit_id\": 32,\n            \"start_date_and_time\": \"2025-06-04 10:17:00.000\",\n            \"finish_date_and_time\": \"2025-06-04 11:47:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 33,\n            \"start_date_and_time\": \"2025-08-18 14:14:00.000\",\n            \"finish_date_and_time\": \"2025-08-18 15:44:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 34,\n            \"start_date_and_time\": \"2025-08-18 14:00:00.000\",\n            \"finish_date_and_time\": \"2025-08-18 15:00:00.000\",\n            \"visit_group_description\": \"Demo\"\n        },\n        {\n            \"visit_id\": 35,\n            \"start_date_and_time\": \"2025-08-22 11:00:00.000\",\n            \"finish_date_and_time\": \"2025-08-22 12:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 36,\n            \"start_date_and_time\": \"2025-09-03 15:00:00.000\",\n            \"finish_date_and_time\": \"2025-09-03 16:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 37,\n            \"start_date_and_time\": \"2025-09-04 10:00:00.000\",\n            \"finish_date_and_time\": \"2025-09-04 11:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 38,\n            \"start_date_and_time\": \"2025-09-18 16:00:00.000\",\n            \"finish_date_and_time\": \"2025-09-18 17:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 39,\n            \"start_date_and_time\": \"2025-09-29 15:30:00.000\",\n            \"finish_date_and_time\": \"2025-09-29 17:00:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 40,\n            \"start_date_and_time\": \"2025-10-02 10:00:00.000\",\n            \"finish_date_and_time\": \"2025-10-02 11:00:00.000\",\n            \"visit_group_description\": \"Demo\"\n        },\n        {\n            \"visit_id\": 41,\n            \"start_date_and_time\": \"2025-10-06 14:00:00.000\",\n            \"finish_date_and_time\": \"2025-10-06 15:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 42,\n            \"start_date_and_time\": \"2025-10-09 09:46:00.000\",\n            \"finish_date_and_time\": \"2025-10-09 11:16:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 43,\n            \"start_date_and_time\": \"2025-10-30 11:00:00.000\",\n            \"finish_date_and_time\": \"2025-10-30 12:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 44,\n            \"start_date_and_time\": \"2025-11-13 10:00:00.000\",\n            \"finish_date_and_time\": \"2025-11-13 11:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 45,\n            \"start_date_and_time\": \"2025-11-13 11:00:00.000\",\n            \"finish_date_and_time\": \"2025-11-13 12:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 46,\n            \"start_date_and_time\": \"2025-11-25 12:00:00.000\",\n            \"finish_date_and_time\": \"2025-11-25 13:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 47,\n            \"start_date_and_time\": \"2025-11-27 09:00:00.000\",\n            \"finish_date_and_time\": \"2025-11-27 10:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 48,\n            \"start_date_and_time\": \"2025-12-16 10:00:00.000\",\n            \"finish_date_and_time\": \"2025-12-16 11:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 49,\n            \"start_date_and_time\": \"2025-12-22 10:00:00.000\",\n            \"finish_date_and_time\": \"2025-12-22 11:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 50,\n            \"start_date_and_time\": \"2026-01-07 14:00:00.000\",\n            \"finish_date_and_time\": \"2026-01-07 16:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 51,\n            \"start_date_and_time\": \"2026-02-26 13:00:00.000\",\n            \"finish_date_and_time\": \"2026-02-26 14:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 52,\n            \"start_date_and_time\": \"2026-03-04 14:40:00.000\",\n            \"finish_date_and_time\": \"2026-03-04 15:40:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 53,\n            \"start_date_and_time\": \"2026-03-03 14:44:00.000\",\n            \"finish_date_and_time\": \"2026-03-03 16:14:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 54,\n            \"start_date_and_time\": \"2026-03-26 14:00:00.000\",\n            \"finish_date_and_time\": \"2026-03-26 15:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 55,\n            \"start_date_and_time\": \"2026-03-26 09:00:00.000\",\n            \"finish_date_and_time\": \"2026-03-26 10:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 56,\n            \"start_date_and_time\": \"2026-05-14 13:00:00.000\",\n            \"finish_date_and_time\": \"2026-05-14 15:00:00.000\",\n            \"visit_group_description\": \"Site Visit\"\n        },\n        {\n            \"visit_id\": 57,\n            \"start_date_and_time\": \"2026-05-18 15:56:00.000\",\n            \"finish_date_and_time\": \"2026-05-18 17:26:00.000\",\n            \"visit_group_description\": null\n        },\n        {\n            \"visit_id\": 58,\n            \"start_date_and_time\": \"2026-05-21 15:00:00.000\",\n            \"finish_date_and_time\": \"2026-05-21 16:00:00.000\",\n            \"visit_group_description\": \"\"\n        },\n        {\n            \"visit_id\": 59,\n            \"start_date_and_time\": \"2026-05-26 14:00:00.000\",\n            \"finish_date_and_time\": \"2026-05-26 15:00:00.000\",\n            \"visit_group_description\": \"\"\n        }\n    ]\n}"}],"_postman_id":"f8b77a9d-0037-4f75-89c6-c34e5bb845f9"},{"name":"Add Visit","id":"89cdebb0-904c-4179-9c34-add6f2b48372","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"first_name","value":"Joe","type":"text"},{"key":"last_name","value":"Bloggs","type":"text"},{"key":"company","value":"ACME Corp Ltd","type":"text"},{"key":"email","value":"joe@bloggs.com","type":"text"},{"key":"hosts","value":"Our Employee","type":"text"},{"key":"employee_id","value":"188","type":"text"},{"key":"start_date_and_time","value":"2024-01-01 09:05:00","type":"text"},{"key":"finish_date_and_time","value":"2024-01-01 11:05:00","type":"text"},{"key":"visitor_status","value":"0","type":"text"},{"key":"walk_in","value":"1","type":"text"},{"key":"location_id","value":"5","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visits","description":"<p>Add a new visit into the system. Generally a visitor should be added with visitor_status = 0, i.e. Expected. If the visitor is a walk-in, walk_in should be set to 1 however if they're pre-registered, walk_in should be 0.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visits"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"89cdebb0-904c-4179-9c34-add6f2b48372"},{"name":"Update Visit","id":"81902981-c368-414b-a477-4e7122d702a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"visit_visitor_id","value":"500","type":"text"},{"key":"visitor_status","value":"1","type":"text"},{"key":"date_and_time","value":"2024-01-01 09:00:00","type":"text"},{"key":"photo","value":"{binary}","type":"text"},{"key":"method","value":"PUT","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visits","description":"<p>Updates an existing visit in the system. Note that because this may include uploaded files, it must be a POST request but you should specify the proxy method of PUT.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visits"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"81902981-c368-414b-a477-4e7122d702a6"}],"id":"5d682f95-3bc8-4079-86b0-5d70eac9cb5a","_postman_id":"5d682f95-3bc8-4079-86b0-5d70eac9cb5a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Visit Visitor Document","item":[{"name":"Get Visit Visitor Documents","id":"c9e942b7-9c73-4a45-9160-fadd833e7131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visit-visitor-documents?visitor_policy_id=1&visit_visitor_id=1","description":"<p>Gets documents that apply to a particular visitor policy along with associated document meta data if a particular visit/visitor is provided. The visitor_policy_id GET parameter must be provided as this determines which visitor policy is applied and thus which documents are returned. The visit_visitor_id GET parameter is optional but where it is provided, the meta data associated with each document, e.g. whether it has been read, accepted or signed will be returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visit-visitor-documents"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[{"key":"visitor_policy_id","value":"1"},{"key":"visit_visitor_id","value":"1"}],"variable":[]}},"response":[{"id":"a8f53f4d-2843-4335-97f0-1442e8e4e1eb","name":"Get Visit Visitor Documents","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://demo.ait-connected.co.uk/Roster/rest/v1/visit-visitor-documents?visitor_policy_id=1&visit_visitor_id=1","host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"path":["visit-visitor-documents"],"query":[{"key":"visitor_policy_id","value":"1"},{"key":"visit_visitor_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:05:08 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"37"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": []\n}"}],"_postman_id":"c9e942b7-9c73-4a45-9160-fadd833e7131"}],"id":"4d1aab74-9ac4-4e84-8541-69bd6d7379bf","_postman_id":"4d1aab74-9ac4-4e84-8541-69bd6d7379bf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Visit Visitor Document Meta","item":[{"name":"Update Visit Visitor Document Meta","id":"80b667e6-875d-4cf9-8da5-e0d2e4e4d17c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"visit_visitor_id","value":"1","type":"text"},{"key":"document_type","value":"company-document","type":"text"},{"key":"company_document_id","value":"10","type":"text"},{"key":"action","value":"signature","type":"text"},{"key":"is_signed","value":"1","type":"text"},{"key":"visitor_signature","value":"0xffffff","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visit-visitor-document-meta","description":"<p>This endpoint can be used to update document meta data for a particular visitor's visit. The meta data \"action\" can be read, accept or signature. \"document_type\" should be \"company-document\". Generally this API endpoint will call the onPWAServerVisitorDocumentMetaUpdated when meta data is successfully updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visit-visitor-document-meta"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"80b667e6-875d-4cf9-8da5-e0d2e4e4d17c"}],"id":"b2bf02dc-f4e6-44d8-b191-c7c035c4e4ce","_postman_id":"b2bf02dc-f4e6-44d8-b191-c7c035c4e4ce","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Visit Visitor Form","item":[{"name":"Add Visitor Form","id":"281b660c-a8e2-4237-9960-9aaf62ab30ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"visit_visitor_id","value":"55","type":"text"},{"key":"form_id","value":"20","type":"text"},{"key":"data","value":"{\"form_id\":\"20\",\"visit_visitor_form_id\":\"\",\"drink\":\"Coffee\",\"visit_visitor_id\":\"154\",\"authorisation\":3,\"authorisation_finalised\":1}","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visit-visitor-form","description":"<p>Adds a new visitor form record into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visit-visitor-form"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"281b660c-a8e2-4237-9960-9aaf62ab30ba"},{"name":"Update Visitor Form","id":"29288677-18f3-40ad-8513-186d2d29f875","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"visit_visitor_id","value":"55","type":"text"},{"key":"form_id","value":"20","type":"text"},{"key":"data","value":"{\"form_id\":\"20\",\"visit_visitor_form_id\":\"30\",\"drink\":\"Tea\",\"visit_visitor_id\":\"154\",\"authorisation\":3,\"authorisation_finalised\":1}","type":"text"},{"key":"method","value":"PUT","type":"text"},{"key":"visit_visitor_form_id","value":"30","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visit-visitor-form","description":"<p>Updates an existing visitor form record in the system. Note that because this may include uploaded files, it must be a POST request but you should specify the proxy method of PUT.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visit-visitor-form"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"29288677-18f3-40ad-8513-186d2d29f875"},{"name":"Delete Visitor Form","id":"7844703c-a827-48f2-9585-6dc91609bbb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visit-visitor-form/30","description":"<p>Deletes a single visitor form record from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visit-visitor-form","30"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"7844703c-a827-48f2-9585-6dc91609bbb7"}],"id":"58727870-d4d2-4bdb-8558-accf5a198c6f","_postman_id":"58727870-d4d2-4bdb-8558-accf5a198c6f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Visit Visitor Form File","item":[{"name":"Delete Visit Visitor Form File","id":"98a1d6ef-cf0f-4d89-9b4c-01367ef87898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visit-visitor-form-file/55","description":"<p>This endpoint can be used to delete files associated with a form that has been completed during a visit check-in.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visit-visitor-form-file","55"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"98a1d6ef-cf0f-4d89-9b4c-01367ef87898"}],"id":"83e675c2-2db3-45bc-abc3-1692fdb8dde5","_postman_id":"83e675c2-2db3-45bc-abc3-1692fdb8dde5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Visitor Policy","item":[{"name":"Get Visitor Policies","id":"6b12a4a0-16af-406b-a8d5-c36a4a187987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visitor-policies","description":"<p>Gets visitor policies in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visitor-policies"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b12a4a0-16af-406b-a8d5-c36a4a187987"},{"name":"Get Visitor Policy","id":"de417aa5-f785-483a-8b5e-ad6533a5b904","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visitor-policies/2","description":"<p>Gets a single visitor policy in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visitor-policies","2"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"4bf5e50b-9e69-4a6b-900a-b35f69765ab9","name":"Get Visitor Policy","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visitor-policies/2"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:05:56 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"3300"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"visitor_policy_id\": 2,\n            \"timezone\": \"\",\n            \"default_duration\": \"1899-12-30 01:30:00.000\",\n            \"kiosk_company\": \"Our Company\",\n            \"location_id\": null,\n            \"location_name\": null,\n            \"kiosk_theme\": \"kiosk-theme-standard\",\n            \"kiosk_colour\": \"brand\",\n            \"kiosk_logo\": \"/Visitor/img/logo-actin-time.png\",\n            \"kiosk_checked_in_message\": \"                                                                                                                                                                                                                                                                                                                                                         It is our pleasure to welcome you to &lt;%=kiosk_company%&gt; &lt;%=visit_first_name%&gt;. Please wait in &lt;%=location_name%&gt; and someone will be with you shortly. Thank you and enjoy your stay.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\n            \"kiosk_checked_out_message\": \"                                                                                                                                                                                                                                                                                                                                                         It was our pleasure to welcome you to &lt;%=kiosk_company%&gt; today &lt;%=visit_first_name%&gt; and we hope to see you again soon. We hope you have a safe and pleasant onward journey.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\n            \"description\": \"Edited Standard Visitor Policy\",\n            \"data\": {\n                \"Visitor\": {\n                    \"Walk-in\": {\n                        \"Edit default duration\": {\n                            \"value\": 0\n                        },\n                        \"Skip default duration\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Edit pre-registration\": {\n                        \"value\": 1\n                    },\n                    \"Required\": {\n                        \"First name\": {\n                            \"value\": 1\n                        },\n                        \"Last name\": {\n                            \"value\": 1\n                        },\n                        \"Company\": {\n                            \"value\": 0\n                        },\n                        \"Email\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"Information\": {\n                        \"Enforce priority order\": {\n                            \"value\": 1\n                        },\n                        \"Forms\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 1\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"4\": {\n                                    \"value\": 0\n                                },\n                                \"5\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 1\n                            },\n                            \"value\": 1\n                        },\n                        \"Documents\": {\n                            \"Categories\": {\n                                \"1\": {\n                                    \"value\": 0\n                                },\n                                \"2\": {\n                                    \"value\": 0\n                                },\n                                \"3\": {\n                                    \"value\": 0\n                                },\n                                \"-10\": {\n                                    \"value\": 0\n                                },\n                                \"-13\": {\n                                    \"value\": 0\n                                },\n                                \"-2\": {\n                                    \"value\": 0\n                                },\n                                \"-3\": {\n                                    \"value\": 0\n                                },\n                                \"-12\": {\n                                    \"value\": 0\n                                },\n                                \"-4\": {\n                                    \"value\": 0\n                                },\n                                \"-7\": {\n                                    \"value\": 0\n                                },\n                                \"-6\": {\n                                    \"value\": 0\n                                },\n                                \"-5\": {\n                                    \"value\": 0\n                                },\n                                \"-1\": {\n                                    \"value\": 0\n                                },\n                                \"-11\": {\n                                    \"value\": 0\n                                },\n                                \"-8\": {\n                                    \"value\": 0\n                                },\n                                \"-9\": {\n                                    \"value\": 0\n                                },\n                                \"value\": 0\n                            },\n                            \"value\": 0\n                        },\n                        \"Photo\": {\n                            \"value\": 0\n                        },\n                        \"value\": 1\n                    },\n                    \"value\": 0\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"de417aa5-f785-483a-8b5e-ad6533a5b904"},{"name":"Add Visitor Policy","id":"a8e5f053-0010-4583-b1e4-fd58eb6f7465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Terminal policy with all terminals","type":"text"},{"key":"data","value":"{json}","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visitor-policies","description":"<p>Adds a new visitor policy into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visitor-policies"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8e5f053-0010-4583-b1e4-fd58eb6f7465"},{"name":"Update Visitor Policy","id":"0626b8aa-d071-499b-ba09-4fd36268a43a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"New terminal policy description","type":"text"},{"key":"data","value":"{json}","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visitor-policies/5","description":"<p>Updates an existing visitor policy in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visitor-policies","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0626b8aa-d071-499b-ba09-4fd36268a43a"},{"name":"Delete Visitor Policy","id":"c0946e64-f32c-4b97-a847-f871f638704e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/visitor-policies/5","description":"<p>Deletes an existing visitor policy from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["visitor-policies","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0946e64-f32c-4b97-a847-f871f638704e"}],"id":"8ebc23a5-9003-4d12-9e65-064d81d6bb71","_postman_id":"8ebc23a5-9003-4d12-9e65-064d81d6bb71","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Who's Having Time Off","item":[{"name":"Get Who's Having Time Off","id":"e4a479d1-ae7d-415e-bf54-d7e00b3c323c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/time-off","description":"<p>This endpoint is only available if accessing the API as an employee. The endpoint will use your PWA policy to determine who else is having time off.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["time-off"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4a479d1-ae7d-415e-bf54-d7e00b3c323c"}],"id":"f67dfd16-3d75-4674-b33f-25f9e2656025","_postman_id":"f67dfd16-3d75-4674-b33f-25f9e2656025","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}},{"name":"Zone","item":[{"name":"Get Zones","id":"486e7b4f-a148-4438-876c-40fcfea8a43f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/zones","description":"<p>Gets zones in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["zones"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"417d3992-fbff-4187-995b-2f71481b969b","name":"Get Zones","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/zones"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:06:47 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"629"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"zone_id\": 1,\n            \"description\": \"On Site - London\"\n        },\n        {\n            \"zone_id\": 2,\n            \"description\": \"Off Site - London\"\n        },\n        {\n            \"zone_id\": 3,\n            \"description\": \"On Site - PWA\"\n        },\n        {\n            \"zone_id\": 4,\n            \"description\": \"Off Site - PWA\"\n        },\n        {\n            \"zone_id\": 5,\n            \"description\": \"On Site - Cardiff\"\n        },\n        {\n            \"zone_id\": 6,\n            \"description\": \"Off Site - Cardiff\"\n        },\n        {\n            \"zone_id\": 7,\n            \"description\": \"On Site - Nottingham\"\n        },\n        {\n            \"zone_id\": 8,\n            \"description\": \"Off Site - Nottingham\"\n        },\n        {\n            \"zone_id\": 9,\n            \"description\": \"On Site - Manchester\"\n        },\n        {\n            \"zone_id\": 10,\n            \"description\": \"Off Site - Manchester\"\n        },\n        {\n            \"zone_id\": 11,\n            \"description\": \"On Site - Birmingham\"\n        },\n        {\n            \"zone_id\": 12,\n            \"description\": \"Off Site - Birmingham\"\n        }\n    ]\n}"}],"_postman_id":"486e7b4f-a148-4438-876c-40fcfea8a43f"},{"name":"Get Zone","id":"4115ae91-4179-4692-8321-70aa0f5f3d1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/zones/1","description":"<p>Gets a single zone in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["zones","1"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"772cb742-e236-4d59-b4de-49f0749ebd4c","name":"Get Zone","originalRequest":{"method":"GET","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/zones/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 14:07:03 GMT"},{"key":"content-type","value":"application/json;; charset=UTF-8"},{"key":"content-length","value":"83"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-powered-by","value":"TRS Pro"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-robots-tag","value":"noindex"},{"key":"strict-transport-security","value":"max-age=86400;"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": [\n        {\n            \"zone_id\": 1,\n            \"description\": \"On Site - London\"\n        }\n    ]\n}"}],"_postman_id":"4115ae91-4179-4692-8321-70aa0f5f3d1c"},{"name":"Add Zone","id":"0d832bc1-09b6-4854-ad5b-dfd8fb49c605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Workshop","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/zones","description":"<p>Adds a new zone into the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["zones"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d832bc1-09b6-4854-ad5b-dfd8fb49c605"},{"name":"Update Zone","id":"79aa1894-4da8-4975-a3e6-0a4f74e48c6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":"Workshop Original","type":"text"}]},"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/zones/5","description":"<p>Updates an existing zone in the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["zones","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"79aa1894-4da8-4975-a3e6-0a4f74e48c6d"},{"name":"Delete Zone","id":"e3b04660-76d8-4b30-8a77-d7260b45da40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://demo.ait-connected.co.uk/Roster/rest/v1/zones/5","description":"<p>Deletes an existing zone from the system.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}},"urlObject":{"path":["zones","5"],"host":["https://demo.ait-connected.co.uk/Roster/rest/v1"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3b04660-76d8-4b30-8a77-d7260b45da40"}],"id":"3a6aa58e-4ff5-42b5-8735-9ba6ebb418ae","_postman_id":"3a6aa58e-4ff5-42b5-8735-9ba6ebb418ae","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","id":"a272ed32-5b9c-4186-a1e2-6cd03366a589","name":"ActIn Time Connected","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"06312c82-a499-424b-8ad1-31dd5d6e55cc","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"a721be80-bcf3-40dd-aa97-adfbdcfa2f56","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"api_url","value":"https://demo.ait-connected.co.uk/Roster/rest/v1"},{"key":"api_client_id","value":""},{"key":"api_client_secret","value":""},{"key":"api_username","value":""},{"key":"api_password","value":""},{"key":"api_scope","value":""},{"key":"access_token","value":""},{"key":"fire_username","value":""},{"key":"fire_password","value":""}]}